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

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

Sends the headers to the stream.
public SendHeaders ( ProtocolHeaders headers, bool isFin ) : void
headers ProtocolHeaders The headers.
isFin bool if set to true than this stream will be half-closed.
Результат void
        public void SendHeaders(ProtocolHeaders headers, bool isFin)
        {
            this.Headers.Merge(headers);
            this.protocol.SendHeaders(this, headers, isFin);
        }