Share via


JsonWebToken.Audiences Property

Definition

Gets the list of 'aud' claims from the payload.

public System.Collections.Generic.IEnumerable<string> Audiences { get; }
member this.Audiences : seq<string>
Public ReadOnly Property Audiences As IEnumerable(Of String)

Property Value

Remarks

Identifies the recipients that the JWT is intended for. see: https://datatracker.ietf.org/doc/html/rfc7519#section-4-1-3

If the 'aud' claim is not found, enumeration will be empty.

Applies to