diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-07-15 13:19:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-15 13:19:29 -0400 |
| commit | 090d79e8c4ceec5fb7b0c4522573baf3aa065aa5 (patch) | |
| tree | 5a40455b5a5186dc2897a7b2854be763f35a11d7 /MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs | |
| parent | 3f8588f94bb33e0342a75b7f8cc1d140790b446e (diff) | |
| parent | b51c614980a6cac56d132dd504b5b26282e8ed2b (diff) | |
Merge pull request #1943 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs index 1d4829260..c520e43b8 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs +++ b/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs @@ -699,5 +699,10 @@ namespace MediaBrowser.Server.Implementations.HttpServer throw error; } + + public object GetAsyncStreamWriter(Func<Stream, Task> streamWriter, IDictionary<string, string> responseHeaders = null) + { + return new AsyncStreamWriterFunc(streamWriter, responseHeaders); + } } }
\ No newline at end of file |
