aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener.Portable/Net/HttpListenerResponse.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-12 03:02:46 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-12 03:02:46 -0500
commit1714cb8764f2311fd255945d5a03d6b298f62071 (patch)
tree43b05abfdff0a4bb49258180798b5df8e0f07b81 /SocketHttpListener.Portable/Net/HttpListenerResponse.cs
parent6865bb53530abbf703b590dd39cfa27274b03107 (diff)
update response stream handling
Diffstat (limited to 'SocketHttpListener.Portable/Net/HttpListenerResponse.cs')
-rw-r--r--SocketHttpListener.Portable/Net/HttpListenerResponse.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/SocketHttpListener.Portable/Net/HttpListenerResponse.cs b/SocketHttpListener.Portable/Net/HttpListenerResponse.cs
index 0bc827b5a..93358cae4 100644
--- a/SocketHttpListener.Portable/Net/HttpListenerResponse.cs
+++ b/SocketHttpListener.Portable/Net/HttpListenerResponse.cs
@@ -19,7 +19,7 @@ namespace SocketHttpListener.Net
CookieCollection cookies;
WebHeaderCollection headers = new WebHeaderCollection();
bool keep_alive = true;
- ResponseStream output_stream;
+ Stream output_stream;
Version version = HttpVersion.Version11;
string location;
int status_code = 200;