System.Net.Security.SslState.ProcessAuthentication C# (CSharp) Method

ProcessAuthentication() private method

private ProcessAuthentication ( LazyAsyncResult lazyResult ) : void
lazyResult LazyAsyncResult
return void
        internal void ProcessAuthentication(LazyAsyncResult lazyResult)
        {
        }

Usage Example

示例#1
0
        public virtual void AuthenticateAsClient(string targetHost, X509CertificateCollection clientCertificates, SslProtocols enabledSslProtocols, bool checkCertificateRevocation)
        {
            SecurityProtocol.ThrowOnNotAllowed(enabledSslProtocols);

            _sslState.ValidateCreateContext(false, targetHost, enabledSslProtocols, null, clientCertificates, true, checkCertificateRevocation);
            _sslState.ProcessAuthentication(null);
        }
All Usage Examples Of System.Net.Security.SslState::ProcessAuthentication