Exemple #1
0
        internal ResponseStream(Stream stream, HttpListenerResponse response, bool ignore_errors)
        {
            this.response      = response;

            this.ignore_errors = ignore_errors;

            this.stream = stream;
        }
        internal HttpListenerContext(HttpConnection cnc)
        {
            this.cnc = cnc;

            request  = new HttpListenerRequest(this);

            response = new HttpListenerResponse(this);
        }