diff options
Diffstat (limited to 'MediaBrowser.Common')
| -rw-r--r-- | MediaBrowser.Common/MediaBrowser.Common.csproj | 1 | ||||
| -rw-r--r-- | MediaBrowser.Common/Net/IHttpResultFactory.cs | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Common/MediaBrowser.Common.csproj b/MediaBrowser.Common/MediaBrowser.Common.csproj index 578a76a30f..b1c40e3dca 100644 --- a/MediaBrowser.Common/MediaBrowser.Common.csproj +++ b/MediaBrowser.Common/MediaBrowser.Common.csproj @@ -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" /> diff --git a/MediaBrowser.Common/Net/IHttpResultFactory.cs b/MediaBrowser.Common/Net/IHttpResultFactory.cs new file mode 100644 index 0000000000..565a2dce9c --- /dev/null +++ b/MediaBrowser.Common/Net/IHttpResultFactory.cs @@ -0,0 +1,9 @@ +using System.IO; + +namespace MediaBrowser.Common.Net +{ + public interface IHttpResultFactory + { + object GetResult(Stream stream, string contentType); + } +} |
