WSTrustChannel.EndIssue Method

Definition

Completes an asynchronous operation to send a WS-Trust Issue message to an endpoint.

Overloads

EndIssue(IAsyncResult, RequestSecurityTokenResponse)

Completes an asynchronous operation to send a WS-Trust Issue message initiated by the BeginIssue(RequestSecurityToken, AsyncCallback, Object) method.

EndIssue(IAsyncResult)

Completes an asynchronous operation to send a WS-Trust Issue message initiated by the BeginIssue(Message, AsyncCallback, Object) method.

EndIssue(IAsyncResult, RequestSecurityTokenResponse)

Completes an asynchronous operation to send a WS-Trust Issue message initiated by the BeginIssue(RequestSecurityToken, AsyncCallback, Object) method.

public:
 virtual System::IdentityModel::Tokens::SecurityToken ^ EndIssue(IAsyncResult ^ result, [Runtime::InteropServices::Out] System::IdentityModel::Protocols::WSTrust::RequestSecurityTokenResponse ^ % rstr);
public System.IdentityModel.Tokens.SecurityToken EndIssue (IAsyncResult result, out System.IdentityModel.Protocols.WSTrust.RequestSecurityTokenResponse rstr);
abstract member EndIssue : IAsyncResult * RequestSecurityTokenResponse -> System.IdentityModel.Tokens.SecurityToken
override this.EndIssue : IAsyncResult * RequestSecurityTokenResponse -> System.IdentityModel.Tokens.SecurityToken
Public Function EndIssue (result As IAsyncResult, ByRef rstr As RequestSecurityTokenResponse) As SecurityToken

Parameters

result
IAsyncResult

A reference to the outstanding asynchronous send request.

rstr
RequestSecurityTokenResponse

The RequestSecurityTokenResponse representing the STS response.

Returns

A SecurityToken that represents the token issued by the STS.

Implements

Applies to

EndIssue(IAsyncResult)

Completes an asynchronous operation to send a WS-Trust Issue message initiated by the BeginIssue(Message, AsyncCallback, Object) method.

public:
 virtual System::ServiceModel::Channels::Message ^ EndIssue(IAsyncResult ^ asyncResult);
public System.ServiceModel.Channels.Message EndIssue (IAsyncResult asyncResult);
abstract member EndIssue : IAsyncResult -> System.ServiceModel.Channels.Message
override this.EndIssue : IAsyncResult -> System.ServiceModel.Channels.Message
Public Function EndIssue (asyncResult As IAsyncResult) As Message

Parameters

asyncResult
IAsyncResult

The IAsyncResult reference to the outstanding asynchronous send request.

Returns

The Message returned from the STS.

Implements

Applies to