System.ServiceModel.Http2Protocol.Http2Protocol.SendRST C# (CSharp) Метод

SendRST() публичный Метод

Sends the RST.
public SendRST ( Http2Stream stream, StatusCode reason ) : void
stream Http2Stream The stream.
reason StatusCode The reason for RST.
Результат 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