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

Http2Protocol() private method

private Http2Protocol ( SecureSocket socket, IStreamStore streamsStore, ProtocolOptions options ) : System.Collections.Generic
socket SecureSocket
streamsStore IStreamStore
options ProtocolOptions
return System.Collections.Generic
        internal Http2Protocol(SecureSocket socket, IStreamStore streamsStore, ProtocolOptions options)
        {
            this.options = options;
            this.streamsStore = streamsStore;
            this.serializer = new FrameSerializer(this.options);
            this.builder = new FrameBuilder();

            this.socket = socket;
            this.isServer = true;
            this.handshakeFinishedEventRaised = new ManualResetEvent(false);
        }

Same methods

Http2Protocol::Http2Protocol ( Uri uri, IStreamStore streamsStore ) : System.Collections.Generic
Http2Protocol::Http2Protocol ( Uri uri, IStreamStore streamsStore, ProtocolOptions options ) : System.Collections.Generic