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
userSamName
Type: System.StringThe user's SAM account name.
usersid
Type: System.StringThe 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.StringThe 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.
rstr
Type: System.Web.Security.SingleSignOn.RSTRResultReturns the result of processing the request.
Implements
IFederationServer.RequestSecurityTokenWithSids(String, String, String[], Byte[], String, RSTRResult)
See Also
FederationServerSoapProxy Class
System.Web.Security.SingleSignOn Namespace
Return to top