Share via


IFederationServer.BeginLsRequestSecurityTokenWithCookie Method (Byte[], String, String[], AsyncCallback, Object)

 

Begins an asynchronous request for a security token when given a cookie token.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

IAsyncResult BeginLsRequestSecurityTokenWithCookie(
    byte[] latToken,
    string targetRealmName,
    string[] authMethodUris,
    AsyncCallback callback,
    object asyncState
)
IAsyncResult^ BeginLsRequestSecurityTokenWithCookie(
    array<unsigned char>^ latToken,
    String^ targetRealmName,
    array<String^>^ authMethodUris,
    AsyncCallback^ callback,
    Object^ asyncState
)
abstract BeginLsRequestSecurityTokenWithCookie : 
        latToken:byte[] *
        targetRealmName:string *
        authMethodUris:string[] *
        callback:AsyncCallback *
        asyncState:Object -> IAsyncResult
Function BeginLsRequestSecurityTokenWithCookie (
    latToken As Byte(),
    targetRealmName As String,
    authMethodUris As String(),
    callback As AsyncCallback,
    asyncState As Object
) As IAsyncResult

Parameters

  • latToken
    Type: System.Byte[]

    The cookie token issued from a previous client authentication.

  • targetRealmName
    Type: System.String

    The name of the target realm for which the security token is being requested. This may be either a federation partner or a resource web server.

  • authMethodUris
    Type: System.String[]

    The URI identifying the auth method requested by the resource realm for authentication. If the signin request message did not contain the wauth query string parameter then this parameter should be null.

  • asyncState
    Type: System.Object

    An object that can be used to access state information of the asynchronous operation.

Return Value

Type: System.IAsyncResult

The status of the asynchronous call.

See Also

IFederationServer Interface
System.Web.Security.SingleSignOn Namespace

Return to top