IssuedSecurityTokenProvider.BeginClose Method

Definition

Asynchronously begins closing the provider.

Overloads

BeginClose(AsyncCallback, Object)

Asynchronously begins closing the provider.

BeginClose(TimeSpan, AsyncCallback, Object)

Asynchronously begins closing the provider.

BeginClose(AsyncCallback, Object)

Asynchronously begins closing the provider.

public:
 virtual IAsyncResult ^ BeginClose(AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginClose (AsyncCallback callback, object state);
abstract member BeginClose : AsyncCallback * obj -> IAsyncResult
override this.BeginClose : AsyncCallback * obj -> IAsyncResult
Public Function BeginClose (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

BeginClose(TimeSpan, AsyncCallback, Object)

Asynchronously begins closing the provider.

public:
 virtual IAsyncResult ^ BeginClose(TimeSpan timeout, AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginClose (TimeSpan timeout, AsyncCallback callback, object state);
abstract member BeginClose : TimeSpan * AsyncCallback * obj -> IAsyncResult
override this.BeginClose : TimeSpan * AsyncCallback * obj -> IAsyncResult
Public Function BeginClose (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