AadAuthorityAudience 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 which Microsoft accounts can be used for sign-in with a given application. See https://aka.ms/msal-net-application-configuration
public enum AadAuthorityAudience
type AadAuthorityAudience =
Public Enum AadAuthorityAudience
- Inheritance
-
AadAuthorityAudience
Fields
Name | Value | Description |
---|---|---|
None | 0 | The sign-in audience was not specified |
AzureAdMyOrg | 1 | Users with a Microsoft work or school account in my organization’s Azure AD tenant (i.e. single tenant). Maps to https://[instance]/[tenantId] |
AzureAdAndPersonalMicrosoftAccount | 2 | Users with a personal Microsoft account, or a work or school account in any organization’s Azure AD tenant Maps to https://[instance]/common/ |
AzureAdMultipleOrgs | 3 | Users with a Microsoft work or school account in any organization’s Azure AD tenant (i.e. multi-tenant). Maps to https://[instance]/organizations/ |
PersonalMicrosoftAccount | 4 | Users with a personal Microsoft account. Maps to https://[instance]/consumers/ |