FederationServerService.LsRequestSecurityToken Method (String, String[], String, Byte[], String, RSTRResult)
Returns a security token when given a user's credentials. This method is used when the Logon Server is not co-located and has collected credentials using either a form or basic authentication.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
[WebMethodAttribute]
public void LsRequestSecurityToken(
string credentialTypeUri,
string[] credentials,
string accountStoreUri,
byte[] cookie,
string targetRealmName,
out RSTRResult rstr
)
public:
[WebMethodAttribute]
void LsRequestSecurityToken(
String^ credentialTypeUri,
array<String^>^ credentials,
String^ accountStoreUri,
array<unsigned char>^ cookie,
String^ targetRealmName,
[OutAttribute] RSTRResult^% rstr
)
[<WebMethodAttribute>]
member LsRequestSecurityToken :
credentialTypeUri:string *
credentials:string[] *
accountStoreUri:string *
cookie:byte[] *
targetRealmName:string *
rstr:RSTRResult byref -> unit
<WebMethodAttribute>
Public Sub LsRequestSecurityToken (
credentialTypeUri As String,
credentials As String(),
accountStoreUri As String,
cookie As Byte(),
targetRealmName As String,
<OutAttribute> ByRef rstr As RSTRResult
)
Parameters
credentialTypeUri
Type: System.StringThe type of credentials specified in credentials.
credentials
Type: System.String[]The user credentials in the format appropriate for instantiating the CredentialFields NameValueCollection object in the ClientCredentialInfo object.
accountStoreUri
Type: System.StringThe account store that the Federation Server should use to attempt to authenticate the client. If this parameter is null then the Federation Server will attempt to authenticate the client against account stores in the order specified by the FS trust policy.
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.RSTRResultThe result of processing the request.
See Also
FederationServerService Class
System.Web.Security.SingleSignOn Namespace
Return to top