FederationServerSoapProxy.BeginLsRequestSecurityToken Method (String, String[], String, Byte[], String, AsyncCallback, Object)
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 together with the EndLsRequestSecurityToken web method by the FS proxy to asynchronously request a security token based on credentials collected from the user.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public IAsyncResult BeginLsRequestSecurityToken(
string credentialTypeUri,
string[] credentials,
string accountStoreUri,
byte[] cookie,
string targetRealmName,
AsyncCallback callback,
object asyncState
)
public:
virtual IAsyncResult^ BeginLsRequestSecurityToken(
String^ credentialTypeUri,
array<String^>^ credentials,
String^ accountStoreUri,
array<unsigned char>^ cookie,
String^ targetRealmName,
AsyncCallback^ callback,
Object^ asyncState
) sealed
abstract BeginLsRequestSecurityToken :
credentialTypeUri:string *
credentials:string[] *
accountStoreUri:string *
cookie:byte[] *
targetRealmName:string *
callback:AsyncCallback *
asyncState:Object -> IAsyncResult
override BeginLsRequestSecurityToken :
credentialTypeUri:string *
credentials:string[] *
accountStoreUri:string *
cookie:byte[] *
targetRealmName:string *
callback:AsyncCallback *
asyncState:Object -> IAsyncResult
Public Function BeginLsRequestSecurityToken (
credentialTypeUri As String,
credentials As String(),
accountStoreUri As String,
cookie As Byte(),
targetRealmName As String,
callback As AsyncCallback,
asyncState As Object
) As IAsyncResult
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 exact 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 Federation Server 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.
callback
Type: System.AsyncCallbackAn AsyncCallback that represents the callback method.
asyncState
Type: System.ObjectAn object that can be used to access state information of the asynchronous operation.
Return Value
Type: System.IAsyncResult
The value of the asynchronous operation.
Implements
See Also
FederationServerSoapProxy Class
System.Web.Security.SingleSignOn Namespace
Return to top