Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 883 Bytes

3.0.0_Microsoft.AspNetCore.Authentication.AzureAD.UI.md

File metadata and controls

20 lines (19 loc) · 883 Bytes

Microsoft.AspNetCore.Authentication.AzureAD.UI

 {
     namespace Microsoft.AspNetCore.Authentication.AzureAD.UI {
         public static class AzureADDefaults {
-            public static readonly string AuthenticationScheme;
+            public const string AuthenticationScheme = "AzureAD";
-            public static readonly string BearerAuthenticationScheme;
+            public const string BearerAuthenticationScheme = "AzureADBearer";
-            public static readonly string CookieScheme;
+            public const string CookieScheme = "AzureADCookie";
-            public static readonly string JwtBearerAuthenticationScheme;
+            public const string JwtBearerAuthenticationScheme = "AzureADJwtBearer";
-            public static readonly string OpenIdScheme;
+            public const string OpenIdScheme = "AzureADOpenID";
         }
     }
 }