mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-29 13:26:44 +01:00
Added IHttpResultFactory
This commit is contained in:
@@ -61,6 +61,7 @@
|
||||
<Compile Include="IO\StreamDefaults.cs" />
|
||||
<Compile Include="Net\BasePeriodicWebSocketListener.cs" />
|
||||
<Compile Include="Configuration\IApplicationPaths.cs" />
|
||||
<Compile Include="Net\IHttpResultFactory.cs" />
|
||||
<Compile Include="Net\IServerManager.cs" />
|
||||
<Compile Include="Net\IWebSocketListener.cs" />
|
||||
<Compile Include="IApplicationHost.cs" />
|
||||
|
||||
9
MediaBrowser.Common/Net/IHttpResultFactory.cs
Normal file
9
MediaBrowser.Common/Net/IHttpResultFactory.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.IO;
|
||||
|
||||
namespace MediaBrowser.Common.Net
|
||||
{
|
||||
public interface IHttpResultFactory
|
||||
{
|
||||
object GetResult(Stream stream, string contentType);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user