C-DEngine 5.105

HttpListenerRequest..::..BeginGetClientCertificate Method

Begins getting the client's X.509 v.3 certificate asynchronously.

Namespace:  WebSocketSharp.Net
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public IAsyncResult BeginGetClientCertificate(
	AsyncCallback requestCallback,
	Object state
)
Public Function BeginGetClientCertificate ( _
	requestCallback As AsyncCallback, _
	state As Object _
) As IAsyncResult
public:
IAsyncResult^ BeginGetClientCertificate(
	AsyncCallback^ requestCallback, 
	Object^ state
)

Parameters

requestCallback
Type: AsyncCallback
An AsyncCallback delegate that references the method(s) called when the asynchronous operation completes.
state
Type: Object
An Object that contains a user defined object to pass to the requestCallback delegate.

Return Value

An IAsyncResult that contains the status of the asynchronous operation.

Exceptions


ExceptionCondition
NotImplementedException This method isn't implemented.

Remarks


This asynchronous operation must be completed by calling the EndGetClientCertificate(IAsyncResult) method. Typically, that method is invoked by the requestCallback delegate.