System.Net.HttpConnection.GetResponseStream C# (CSharp) Method

GetResponseStream() public method

public GetResponseStream ( ) : System.Net.ResponseStream
return System.Net.ResponseStream
		public ResponseStream GetResponseStream ()
		{
			// TODO: can we get this stream before reading the input?
			if (o_stream == null) {
				HttpListener listener = context.Listener;
				bool ign = (listener == null) ? true : listener.IgnoreWriteExceptions;
				o_stream = new ResponseStream (stream, context.Response, ign);
			}
			return o_stream;
		}