WSTrustChannel.Issue Method

Definition

Sends a WS-Trust Issue message to an endpoint STS.

Overloads

Issue(RequestSecurityToken)

Sends a WS-Trust Issue message to an endpoint STS using the specified RequestSecurityToken object.

Issue(Message)

Sends a WS-Trust Issue message to an endpoint STS using the specified Message object.

Issue(RequestSecurityToken, RequestSecurityTokenResponse)

Sends a WS-Trust Issue message to an endpoint STS using the specified RequestSecurityToken and RequestSecurityToken objects.

Issue(RequestSecurityToken)

Sends a WS-Trust Issue message to an endpoint STS using the specified RequestSecurityToken object.

public:
 virtual System::IdentityModel::Tokens::SecurityToken ^ Issue(System::IdentityModel::Protocols::WSTrust::RequestSecurityToken ^ rst);
public virtual System.IdentityModel.Tokens.SecurityToken Issue (System.IdentityModel.Protocols.WSTrust.RequestSecurityToken rst);
abstract member Issue : System.IdentityModel.Protocols.WSTrust.RequestSecurityToken -> System.IdentityModel.Tokens.SecurityToken
override this.Issue : System.IdentityModel.Protocols.WSTrust.RequestSecurityToken -> System.IdentityModel.Tokens.SecurityToken
Public Overridable Function Issue (rst As RequestSecurityToken) As SecurityToken

Parameters

rst
RequestSecurityToken

The RequestSecurityToken that represents the request to the STS.

Returns

A SecurityToken that represents the token issued by the STS.

Implements

Applies to

Issue(Message)

Sends a WS-Trust Issue message to an endpoint STS using the specified Message object.

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

Parameters

message
Message

The Message that contains the instructions for the request to the STS.

Returns

The Message returned from the STS.

Implements

Applies to

Issue(RequestSecurityToken, RequestSecurityTokenResponse)

Sends a WS-Trust Issue message to an endpoint STS using the specified RequestSecurityToken and RequestSecurityToken objects.

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

Parameters

rst
RequestSecurityToken

The RequestSecurityToken that represents the request to the STS.

rstr
RequestSecurityTokenResponse

The RequestSecurityTokenResponse that represents the response from the STS.

Returns

A SecurityToken that represents the token issued by the STS.

Implements

Applies to