diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-12 03:02:46 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-12 03:02:46 -0500 |
| commit | 1714cb8764f2311fd255945d5a03d6b298f62071 (patch) | |
| tree | 43b05abfdff0a4bb49258180798b5df8e0f07b81 /SocketHttpListener.Portable/Net/HttpListenerResponse.cs | |
| parent | 6865bb53530abbf703b590dd39cfa27274b03107 (diff) | |
update response stream handling
Diffstat (limited to 'SocketHttpListener.Portable/Net/HttpListenerResponse.cs')
| -rw-r--r-- | SocketHttpListener.Portable/Net/HttpListenerResponse.cs | 2 |
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; |
