aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener.Portable/Net/ResponseStream.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-28 00:38:41 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-28 00:38:41 -0500
commit56b24da15165ef4c4b7107b673bab5b191d76afe (patch)
tree2e0462593fed108f1807caeb76a3b6692a55e049 /SocketHttpListener.Portable/Net/ResponseStream.cs
parent4a548f30811bb8aeee689bec90773b36398078e9 (diff)
update response stream parsing
Diffstat (limited to 'SocketHttpListener.Portable/Net/ResponseStream.cs')
-rw-r--r--SocketHttpListener.Portable/Net/ResponseStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/SocketHttpListener.Portable/Net/ResponseStream.cs b/SocketHttpListener.Portable/Net/ResponseStream.cs
index 7a6425dea..6067a89ec 100644
--- a/SocketHttpListener.Portable/Net/ResponseStream.cs
+++ b/SocketHttpListener.Portable/Net/ResponseStream.cs
@@ -14,7 +14,7 @@ namespace SocketHttpListener.Net
// Update: we send a single packet for the first non-chunked Write
// What happens when we set content-length to X and write X-1 bytes then close?
// what if we don't set content-length at all?
- class ResponseStream : Stream
+ public class ResponseStream : Stream
{
HttpListenerResponse response;
bool disposed;