aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/IHttpResultFactory.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-08 12:25:25 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-08 12:25:25 -0500
commit332f6359398b4a26df283ee3dbda40f7c3eaacc0 (patch)
treeed1e85926c07914a7a9cfa8a053acc1ddbbb5d72 /MediaBrowser.Common/Net/IHttpResultFactory.cs
parentbf9f0bc5342fad3646e7d822be1e6896910101a6 (diff)
Added IHttpResultFactory
Diffstat (limited to 'MediaBrowser.Common/Net/IHttpResultFactory.cs')
-rw-r--r--MediaBrowser.Common/Net/IHttpResultFactory.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/IHttpResultFactory.cs b/MediaBrowser.Common/Net/IHttpResultFactory.cs
new file mode 100644
index 000000000..565a2dce9
--- /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);
+ }
+}