TokenProvider.BeginGetToken Method

Definition

Begins an asynchronous operation to get a security token.

public IAsyncResult BeginGetToken (string appliesTo, string action, bool bypassCache, TimeSpan timeout, AsyncCallback callback, object state);
member this.BeginGetToken : string * string * bool * TimeSpan * AsyncCallback * obj -> IAsyncResult
Public Function BeginGetToken (appliesTo As String, action As String, bypassCache As Boolean, timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

appliesTo
String

The URI which the access token applies to.

action
String

The request action.

bypassCache
Boolean

true to ignore existing token information in the cache; false to use the token information in the cache.

timeout
TimeSpan

The time span that specifies the timeout value for the message that gets the security token.

callback
AsyncCallback

An AsyncCallback delegate that references the method to invoke when the operation is complete.

state
Object

A user-defined object that contains state information about the asynchronous operation.

Returns

An IAsyncResult object that references the asynchronous operation to get a token.

Applies to