SslStream::AuthenticateAsServerAsync Method (X509Certificate^, Boolean, Boolean)
Called by servers to authenticate the server and optionally the client in a client-server connection using the specified certificates, requirements and security protocol as an asynchronous operation.
Assembly: System (in System.dll)
public: [HostProtectionAttribute(SecurityAction::LinkDemand, ExternalThreading = true)] virtual Task^ AuthenticateAsServerAsync( X509Certificate^ serverCertificate, bool clientCertificateRequired, bool checkCertificateRevocation )
Parameters
- serverCertificate
-
Type:
System.Security.Cryptography.X509Certificates::X509Certificate^
The X509Certificate used to authenticate the server.
- clientCertificateRequired
-
Type:
System::Boolean
A Boolean value that specifies whether the client is asked for a certificate for authentication. Note that this is only a request -- if no certificate is provided, the server still accepts the connection request.
- checkCertificateRevocation
-
Type:
System::Boolean
A Boolean value that specifies whether the certificate revocation list is checked during authentication.
Return Value
Type: System.Threading.Tasks::Task^The task object representing the asynchronous operation.
If the authentication fails, you receive a AuthenticationException, and this SslStream is no longer useable. You should close this object and remove all references to it so that it can be collected by the garbage collector.
Available since 4.7