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

SendRST() public method

Sends the RST.
public SendRST ( Http2Stream stream, StatusCode reason ) : void
stream Http2Stream The stream.
reason StatusCode The reason for RST.
return void
        public void SendRST(Http2Stream stream, StatusCode reason)
        {
            this.SendFrame(stream, this.builder.BuildRSTFrame(stream, reason));
        }

Same methods

Http2Protocol::SendRST ( int streamId, StatusCode reason ) : void