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" />
|
||||
|
||||
@@ -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