AudienceUriMode Enum
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.
Specifies whether the SamlSecurityToken security token's SamlAudienceRestrictionCondition should be validated.
public enum class AudienceUriMode
public enum AudienceUriMode
type AudienceUriMode =
Public Enum AudienceUriMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Never | 0 | Never. |
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. |
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:
Set the AudienceUriMode property to Always or BearerKeyOnly.
Specify the set of valid URIs, by adding the URIs to the AllowedAudienceUris collection.
Optionally, override the ValidateAudienceRestriction method to specify the validation algorithm to use for the allowed URI.