WSTrustChannel.EndValidate Method

Definition

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

Overloads

EndValidate(IAsyncResult)

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

EndValidate(IAsyncResult, RequestSecurityTokenResponse)

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

EndValidate(IAsyncResult)

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

public:
 virtual System::ServiceModel::Channels::Message ^ EndValidate(IAsyncResult ^ asyncResult);
public System.ServiceModel.Channels.Message EndValidate (IAsyncResult asyncResult);
abstract member EndValidate : IAsyncResult -> System.ServiceModel.Channels.Message
override this.EndValidate : IAsyncResult -> System.ServiceModel.Channels.Message
Public Function EndValidate (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

EndValidate(IAsyncResult, RequestSecurityTokenResponse)

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

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

Parameters

result
IAsyncResult

A reference to the outstanding asynchronous send request.

rstr
RequestSecurityTokenResponse

The RequestSecurityTokenResponse representing the STS response.

Implements

Applies to