AudienceUriMode Enum

Definition

Specifies whether the SamlSecurityToken security token's SamlAudienceRestrictionCondition should be validated.

public enum class AudienceUriMode
public enum AudienceUriMode
type AudienceUriMode = 
Public Enum AudienceUriMode
Inheritance
AudienceUriMode

Fields

Always 1

Always.

BearerKeyOnly 2

Only when the security token's key is of type BearerKey and there are no proof of possession keys in the security token.

Never 0

Never.

Remarks

Use the AudienceUriMode property in a federated application that utilizes a security token service (STS) that issues SamlSecurityToken security tokens. When the STS issues the security token, it can specify the URI of the Web services for which the security token is intended by adding a SamlAudienceRestrictionCondition to the security token. That allows the SamlSecurityTokenAuthenticator for the recipient Web service to verify that the issued security token is intended for this Web service by specifying that this check should happen by doing the following:

Optionally, override the ValidateAudienceRestriction method to specify the validation algorithm to use for the allowed URI.

Applies to

See also