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

Http2Protocol() private method

Initializes a new instance of the Http2Protocol class.
private Http2Protocol ( Uri uri, IStreamStore streamsStore, ProtocolOptions options ) : System.Collections.Generic
uri Uri The URI.
streamsStore IStreamStore The streams store.
options ProtocolOptions Protocol options
return System.Collections.Generic
        internal Http2Protocol(Uri uri, IStreamStore streamsStore, ProtocolOptions options)
        {
            this.options = options;
            this.streamsStore = streamsStore;
            this.serializer = new FrameSerializer(this.options);
            this.builder = new FrameBuilder();

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

Same methods

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