aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Services/IRequest.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-12 02:14:04 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-12 02:14:04 -0500
commita855864207fe3ed0ac9b4d648617bb1cb39df3f3 (patch)
treeec53ae5d97f8a12b2cbaeeaaf1066b976376f72d /MediaBrowser.Model/Services/IRequest.cs
parentc035f2baa1f3537d298a6559d15bd7ca40188e5d (diff)
limit access to response stream
Diffstat (limited to 'MediaBrowser.Model/Services/IRequest.cs')
-rw-r--r--MediaBrowser.Model/Services/IRequest.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/MediaBrowser.Model/Services/IRequest.cs b/MediaBrowser.Model/Services/IRequest.cs
index 455a69d37..e9a9f1c5b 100644
--- a/MediaBrowser.Model/Services/IRequest.cs
+++ b/MediaBrowser.Model/Services/IRequest.cs
@@ -137,31 +137,18 @@ namespace MediaBrowser.Model.Services
Stream OutputStream { get; }
/// <summary>
- /// Write once to the Response Stream then close it.
- /// </summary>
- /// <param name="text"></param>
- void Write(string text);
-
- /// <summary>
/// Signal that this response has been handled and no more processing should be done.
/// When used in a request or response filter, no more filters or processing is done on this request.
/// </summary>
void Close();
/// <summary>
- /// Response.Flush() and OutputStream.Flush() seem to have different behaviour in ASP.NET
- /// </summary>
- void Flush();
-
- /// <summary>
/// Gets a value indicating whether this instance is closed.
/// </summary>
bool IsClosed { get; }
void SetContentLength(long contentLength);
- bool KeepAlive { get; set; }
-
//Add Metadata to Response
Dictionary<string, object> Items { get; }
}