コード例 #1
0
ファイル: ResponseStream.cs プロジェクト: jamesaxl/reactor
        internal ResponseStream(Stream stream, HttpListenerResponse response, bool ignore_errors)
        {
            this.response      = response;

            this.ignore_errors = ignore_errors;

            this.stream = stream;
        }
コード例 #2
0
        internal HttpListenerContext(HttpConnection cnc)
        {
            this.cnc = cnc;

            request  = new HttpListenerRequest(this);

            response = new HttpListenerResponse(this);
        }