SecurityTokenServiceClient.BeginIssueSecurityTokenResponse Method
Begins an asynchronous request for a security token from a security token service using the response from a previous security token request.
Namespace: Microsoft.Web.Services3.Security
Assembly: Microsoft.Web.Services3 (in microsoft.web.services3.dll)
Usage
'Usage
Dim request As RequestSecurityTokenResponse
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult
Dim securityTokenServiceClient1 As SecurityTokenServiceClient
returnValue = securityTokenServiceClient1.BeginIssueSecurityTokenResponse(request, callback, state)
Syntax
'Declaration
Public Overridable Function BeginIssueSecurityTokenResponse( _
ByVal request As RequestSecurityTokenResponse, _
ByVal callback As AsyncCallback, _
ByVal state As Object _
) As IAsyncResult
public virtual IAsyncResult BeginIssueSecurityTokenResponse(
RequestSecurityTokenResponse request,
AsyncCallback callback,
object state
);
public:
virtual IAsyncResult^ BeginIssueSecurityTokenResponse(
RequestSecurityTokenResponse^ request,
AsyncCallback^ callback,
Object^ state
);
public virtual IAsyncResult BeginIssueSecurityTokenResponse(
RequestSecurityTokenResponse request,
AsyncCallback callback,
System.Object state
);
public function BeginIssueSecurityTokenResponse(
request : RequestSecurityTokenResponse,
callback : AsyncCallback,
state : Object
) : IAsyncResult;
Parameters
- request
A RequestSecurityTokenResponse that contains the details of the response from a previous security token request.
- callback
An AsyncCallback that is called when the asynchronous operation is completed. If callback is null, the delegate is not called.
- state
An object that contains state information for this request.
Return Value
An IAsyncResult that contains the details of the asynchronous request.
Remarks
Use this IssueSecurityTokenResponse overload when multiple messages must be exchanged between the SOAP sender and the security token service. Multiple messages may be required if a security token service uses a challenge/response mechanism to authenticate the SOAP message sender.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server
Target Platforms
See Also
Reference
SecurityTokenServiceClient Class
SecurityTokenServiceClient Members
Microsoft.Web.Services3.Security Namespace