IssuedSecurityTokenProvider.BeginOpen Method

Definition

Asynchronously begins opening the provider.

Overloads

BeginOpen(AsyncCallback, Object)

Asynchronously begins opening the provider.

BeginOpen(TimeSpan, AsyncCallback, Object)

Asynchronously begins opening the provider.

BeginOpen(AsyncCallback, Object)

Asynchronously begins opening the provider.

public:
 virtual IAsyncResult ^ BeginOpen(AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginOpen (AsyncCallback callback, object state);
abstract member BeginOpen : AsyncCallback * obj -> IAsyncResult
override this.BeginOpen : AsyncCallback * obj -> IAsyncResult
Public Function BeginOpen (callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

callback
AsyncCallback

The AsyncCallback method to execute when the operation completed.

state
Object

An Object that represents the state of the operation.

Returns

An IAsyncResult object that represents the result of an asynchronous operation.

Implements

Applies to

BeginOpen(TimeSpan, AsyncCallback, Object)

Asynchronously begins opening the provider.

public:
 virtual IAsyncResult ^ BeginOpen(TimeSpan timeout, AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginOpen (TimeSpan timeout, AsyncCallback callback, object state);
abstract member BeginOpen : TimeSpan * AsyncCallback * obj -> IAsyncResult
override this.BeginOpen : TimeSpan * AsyncCallback * obj -> IAsyncResult
Public Function BeginOpen (timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

timeout
TimeSpan

A TimeSpan after which the call times out.

callback
AsyncCallback

The AsyncCallback method to execute when the operation completed.

state
Object

An Object that represents the state of the operation.

Returns

An IAsyncResult object that represents the result of an asynchronous operation.

Implements

Applies to