TokenValidationParameters.ValidateAudience Property

Definition

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.

Applies to