IWSTrustChannelContract.Issue Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sends a WS-Trust Issue message to an endpoint STS.
Overloads
Issue(RequestSecurityToken) |
Sends a WS-Trust Issue message to an endpoint STS. |
Issue(RequestSecurityToken, RequestSecurityTokenResponse) |
Sends a WS-Trust Issue message to an endpoint STS. |
Issue(RequestSecurityToken)
Sends a WS-Trust Issue message to an endpoint STS.
public:
System::IdentityModel::Tokens::SecurityToken ^ Issue(System::IdentityModel::Protocols::WSTrust::RequestSecurityToken ^ request);
public System.IdentityModel.Tokens.SecurityToken Issue (System.IdentityModel.Protocols.WSTrust.RequestSecurityToken request);
abstract member Issue : System.IdentityModel.Protocols.WSTrust.RequestSecurityToken -> System.IdentityModel.Tokens.SecurityToken
Public Function Issue (request As RequestSecurityToken) As SecurityToken
Parameters
- request
- RequestSecurityToken
The RequestSecurityToken that represents the request to the STS.
Returns
A SecurityToken that represents the token issued by the STS.
Applies to
Issue(RequestSecurityToken, RequestSecurityTokenResponse)
Sends a WS-Trust Issue message to an endpoint STS.
public:
System::IdentityModel::Tokens::SecurityToken ^ Issue(System::IdentityModel::Protocols::WSTrust::RequestSecurityToken ^ request, [Runtime::InteropServices::Out] System::IdentityModel::Protocols::WSTrust::RequestSecurityTokenResponse ^ % response);
public System.IdentityModel.Tokens.SecurityToken Issue (System.IdentityModel.Protocols.WSTrust.RequestSecurityToken request, out System.IdentityModel.Protocols.WSTrust.RequestSecurityTokenResponse response);
abstract member Issue : System.IdentityModel.Protocols.WSTrust.RequestSecurityToken * RequestSecurityTokenResponse -> System.IdentityModel.Tokens.SecurityToken
Public Function Issue (request As RequestSecurityToken, ByRef response As RequestSecurityTokenResponse) As SecurityToken
Parameters
- request
- RequestSecurityToken
The RequestSecurityToken that represents the request to the STS.
- response
- RequestSecurityTokenResponse
The RequestSecurityTokenResponse that represents the response from the STS.
Returns
A SecurityToken that represents the token issued by the STS.