HttpServer.HttpClientContextImp.Check100Continue C# (CSharp) Method

Check100Continue() protected method

This method checks the request if a responde to 100-continue should be sent.
100 continue is a value in the Expect header. It's used to let the webserver determine if a request can be handled. The client waits for a reply before sending the body.
protected Check100Continue ( ) : void
return void
        protected virtual void Check100Continue()
        {
            // 100continue fix
            if (_parser.CurrentRequest.ShouldReplyTo100Continue())
                Respond(HttpHelper.HTTP10, HttpStatusCode.Continue, "Please continue mate.");
        }