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

 

This API supports the product infrastructure and is not intended to be used directly from your code.

This method supports the AD FS infrastructure and is not meant to be used directly from your code. This web method is called together with the EndLsRequestSecurityTokenWithCookie web method by the FS proxy to asynchronously request a security token based on a cookie issued previously.

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

Syntax

public IAsyncResult BeginLsRequestSecurityTokenWithCookie(
    byte[] latToken,
    string targetRealmName,
    string[] authMethodUris,
    AsyncCallback callback,
    object asyncState
)
public:
virtual IAsyncResult^ BeginLsRequestSecurityTokenWithCookie(
    array<unsigned char>^ latToken,
    String^ targetRealmName,
    array<String^>^ authMethodUris,
    AsyncCallback^ callback,
    Object^ asyncState
) sealed
abstract BeginLsRequestSecurityTokenWithCookie : 
        latToken:byte[] *
        targetRealmName:string *
        authMethodUris:string[] *
        callback:AsyncCallback *
        asyncState:Object -> IAsyncResult
override BeginLsRequestSecurityTokenWithCookie : 
        latToken:byte[] *
        targetRealmName:string *
        authMethodUris:string[] *
        callback:AsyncCallback *
        asyncState:Object -> IAsyncResult
Public 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 current status of the asynchronous operation.

Implements

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

See Also

FederationServerSoapProxy Class
System.Web.Security.SingleSignOn Namespace

Return to top