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

SendSynStream() public method

Sends the syn stream request.
public SendSynStream ( Http2Stream stream, ProtocolHeaders headers, bool isFin ) : void
stream Http2Stream The stream.
headers ProtocolHeaders The headers.
isFin bool FIN flag.
return void
        public void SendSynStream(Http2Stream stream, ProtocolHeaders headers, bool isFin)
        {
            this.SendFrame(this.builder.BuildSynStreamFrame(stream, headers, isFin));
        }