Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SecurityTokenService::GetRequestorProofEncryptingCredentials Method (RequestSecurityToken^)

.NET Framework (current version)
 

Gets the requestor's proof encrypting credentials.

Namespace:   System.IdentityModel
Assembly:  System.IdentityModel (in System.IdentityModel.dll)

protected:
virtual EncryptingCredentials^ GetRequestorProofEncryptingCredentials(
	RequestSecurityToken^ request
)

Parameters

request
Type: System.IdentityModel.Protocols.WSTrust::RequestSecurityToken^

A RequestSecurityToken that represents the incoming token request (RST).

Return Value

Type: System.IdentityModel.Tokens::EncryptingCredentials^

An EncryptingCredentials object that represents the requestor’s encrypting credentials.

Exception Condition
ArgumentNullException

request is null.

This method is called from the GetProofToken method.

The default implementation does the following. Returns null if there is no encryption token specified in the request (the RequestSecurityToken::ProofEncryption property is null). Otherwise, if it can get the token as an X509SecurityToken, it returns credentials based on that token. If it cannot resolve the token as an X509SecurityToken, a RequestFailedException is thrown.

.NET Framework
Available since 4.5
Return to top
Show:
© 2017 Microsoft