SslStream.BeginAuthenticateAsServer Method (X509Certificate, AsyncCallback, Object)
Called by servers to begin an asynchronous operation to authenticate the client and optionally the server in a client-server connection.
Assembly: System (in System.dll)
[HostProtectionAttribute(SecurityAction.LinkDemand, ExternalThreading = true)] public virtual IAsyncResult BeginAuthenticateAsServer( X509Certificate serverCertificate, AsyncCallback asyncCallback, Object asyncState )
Parameters
- serverCertificate
- Type: System.Security.Cryptography.X509Certificates.X509Certificate
The X509Certificate used to authenticate the server.
- asyncCallback
- Type: System.AsyncCallback
An AsyncCallback delegate that references the method to invoke when the authentication is complete.
- asyncState
- Type: System.Object
A user-defined object that contains information about the operation. This object is passed to the asyncCallback delegate when the operation completes.
Return Value
Type: System.IAsyncResultAn IAsyncResult object indicating the status of the asynchronous operation.
| Exception | Condition |
|---|---|
| ArgumentNullException | serverCertificate is null. |
| AuthenticationException | The authentication failed and left this object in an unusable state. |
| InvalidOperationException | Authentication has already occurred. -or- Client authentication using this SslStream was tried previously. -or- Authentication is already in progress. |
| ObjectDisposedException | This object has been closed. |
| PlatformNotSupportedException | The BeginAuthenticateAsServer method is not supported on Windows 95, Windows 98, or Windows Millennium. |
This method authenticates using Default. The certificate revocation list is not checked during authentication. The client is not required to provide a certificate for authentication.
The asynchronous authentication operation must be completed by calling the EndAuthenticateAsClient method. Typically, the method is invoked by the asyncCallback delegate.
This method does not block while the operation completes. To block until the operation completes, use one of the AuthenticateAsClient method overloads.
For detailed information about using the asynchronous programming model, see Calling Synchronous Methods Asynchronously
If you receive a AuthenticationException, 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.
Note |
|---|
The HostProtectionAttribute attribute applied to this type or member has the following Resources property value: ExternalThreading. The HostProtectionAttribute does not affect desktop applications (which are typically started by double-clicking an icon, typing a command, or entering a URL in a browser). For more information, see the HostProtectionAttribute class or SQL Server Programming and Host Protection Attributes. |
Windows 95, Windows 98, Windows 98 Second Edition, Windows Millennium Edition Platform Note: The BeginAuthenticateAsServer method is not supported.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note