Table of Contents

Enum MicrosoftEntraAuthorityMode

Namespace
Dynamicweb.ExternalAuthentication
Assembly
Dynamicweb.ExternalAuthentication.dll

Specifies how the Microsoft Entra authority URL is determined.

public enum MicrosoftEntraAuthorityMode

Fields

Common = 1

Accept any Microsoft account (work/school and personal). Authority: https://login.microsoftonline.com/common/v2.0

Consumers = 3

Accept only personal Microsoft accounts (Outlook.com, Xbox, Skype, etc.). Work/school accounts are excluded. Tenant-based issuer validation does not apply in the same way; the consumer tenant ID is 9188040d-6c67-4c5b-b112-36a304b66dad. Authority: https://login.microsoftonline.com/consumers/v2.0

Organizations = 2

Accept only work and school accounts (Microsoft Entra ID / Azure AD organizations). Personal Microsoft accounts are excluded. Authority: https://login.microsoftonline.com/organizations/v2.0

Tenant = 0

Use a specific directory (tenant) ID or domain. Authority: https://login.microsoftonline.com/{tenant}/v2.0

To top