Share via


FederationServerService.LsRequestSecurityTokenWithCookie Method (Byte[], String, String[], RSTRResult)

 

Returns a security token when given a cookie token. This method is used when the Logon Server is not co-located and has received a cookie that was issued during a previous client authentication.

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

Syntax

[WebMethodAttribute]
public void LsRequestSecurityTokenWithCookie(
    byte[] latToken,
    string targetRealmName,
    string[] authMethodUris,
    out RSTRResult rstr
)
public:
[WebMethodAttribute]
void LsRequestSecurityTokenWithCookie(
    array<unsigned char>^ latToken,
    String^ targetRealmName,
    array<String^>^ authMethodUris,
    [OutAttribute] RSTRResult^% rstr
)
[<WebMethodAttribute>]
member LsRequestSecurityTokenWithCookie : 
        latToken:byte[] *
        targetRealmName:string *
        authMethodUris:string[] *
        rstr:RSTRResult byref -> unit
<WebMethodAttribute>
Public Sub LsRequestSecurityTokenWithCookie (
    latToken As Byte(),
    targetRealmName As String,
    authMethodUris As String(),
    <OutAttribute> ByRef rstr As RSTRResult
)

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.

See Also

FederationServerService Class
System.Web.Security.SingleSignOn Namespace

Return to top