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

 

Returns a security token when given a security token.

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

Syntax

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

Parameters

  • cookie
    Type: System.Byte[]

    The cookie obtained from the client.

  • targetRealmName
    Type: System.String

    The name of the target realm for which the security token is being requested.

See Also

FederationServerService Class
System.Web.Security.SingleSignOn Namespace

Return to top