dotnet-core/release-notes/3.0/api-diff/Asp.Net/3.0.0_Microsoft.AspNetCore.Authentication.AzureAD.UI.md
2019-10-10 13:57:00 -07:00

884 B

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";
         }
     }
 }