Share via


FederationServerSoapProxy.RequestSecurityTokenWithSids Method (String, String, String[], Byte[], String, RSTRResult)

 

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 by the FS proxy to request a security token based on windows authentication.

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

Syntax

public void RequestSecurityTokenWithSids(
    string userSamName,
    string usersid,
    string[] groupsids,
    byte[] cookie,
    string targetRealmName,
    out RSTRResult rstr
)
public:
virtual void RequestSecurityTokenWithSids(
    String^ userSamName,
    String^ usersid,
    array<String^>^ groupsids,
    array<unsigned char>^ cookie,
    String^ targetRealmName,
    [OutAttribute] RSTRResult^% rstr
) sealed
abstract RequestSecurityTokenWithSids : 
        userSamName:string *
        usersid:string *
        groupsids:string[] *
        cookie:byte[] *
        targetRealmName:string *
        rstr:RSTRResult byref -> unit
override RequestSecurityTokenWithSids : 
        userSamName:string *
        usersid:string *
        groupsids:string[] *
        cookie:byte[] *
        targetRealmName:string *
        rstr:RSTRResult byref -> unit
Public Sub RequestSecurityTokenWithSids (
    userSamName As String,
    usersid As String,
    groupsids As String(),
    cookie As Byte(),
    targetRealmName As String,
    <OutAttribute> ByRef rstr As RSTRResult
)

Parameters

  • usersid
    Type: System.String

    The user security identifier (SID).

  • groupsids
    Type: System.String[]

    The group security identifiers.

  • 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. This may be either a federation partner or a resource web server.

Implements

IFederationServer.RequestSecurityTokenWithSids(String, String, String[], Byte[], String, RSTRResult)

See Also

FederationServerSoapProxy Class
System.Web.Security.SingleSignOn Namespace

Return to top