System.ServiceModel.Http2Protocol.Http2Stream.SendRST C# (CSharp) Method

SendRST() public method

Sends the RST to the stream.
public SendRST ( StatusCode reason ) : void
reason StatusCode The reason.
return void
        public void SendRST(StatusCode reason)
        {
            this.protocol.SendRST(this, reason);
        }