TokenValidationParameters.ValidateAudience Property
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 or sets a boolean to control if the audience will be validated during token validation.
public bool ValidateAudience { get; set; }
member this.ValidateAudience : bool with get, set
Public Property ValidateAudience As Boolean
Property Value
Remarks
Validation of the audience, mitigates forwarding attacks. For example, a site that receives a token, could not replay it to another site. A forwarded token would contain the audience of the original site. This boolean only applies to default audience validation. If AudienceValidator is set, it will be called regardless of whether this property is true or false. The default is true
.