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

SendHeaders() public method

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