IEndpointIdentityProvider.GetIdentityOfSelf(SecurityTokenRequirement) 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.
Gets the identity of the current endpoint, based on the security token requirements passed in.
public:
System::ServiceModel::EndpointIdentity ^ GetIdentityOfSelf(System::IdentityModel::Selectors::SecurityTokenRequirement ^ tokenRequirement);
public System.ServiceModel.EndpointIdentity GetIdentityOfSelf (System.IdentityModel.Selectors.SecurityTokenRequirement tokenRequirement);
abstract member GetIdentityOfSelf : System.IdentityModel.Selectors.SecurityTokenRequirement -> System.ServiceModel.EndpointIdentity
Public Function GetIdentityOfSelf (tokenRequirement As SecurityTokenRequirement) As EndpointIdentity
Parameters
- tokenRequirement
- SecurityTokenRequirement
The SecurityTokenRequirement that describes security token requirements.
Returns
The EndpointIdentity of the current endpoint.
Remarks
The tokenRequirement
parameter contains the binding information of the endpoint, which is typically used in determining the EndpointIdentity for the endpoint. For example, if the binding is configured to do Kerberos-based authentication, the default identity returned will be a ServicePrincipalName
(SPN) or UserPrincipalName
(UPN).