IdentityApplicationOptions.Authority Property

Definition

Gets or sets the authority to use when calling the identity provider. For AzureAD or Azure AD B2C, rather use Instance and TenantId. For Microsoft Entra External IDs, use the authority of the form https://subdomain.ciamlogin.com.

public virtual string? Authority { get; set; }
member this.Authority : string with get, set
Public Overridable Property Authority As String

Property Value

Examples

IdentityApplicationOptions options = new 
{
 Authority = "https://subdomain.ciamlogin.com"
};

Applies to