You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Http/Authentication.Abstractions/src/AuthenticationOptions.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -64,32 +64,32 @@ public void AddScheme<THandler>(string name, string displayName) where THandler
64
64
/// <summary>
65
65
/// Used as the fallback default scheme for all the other defaults.
66
66
/// </summary>
67
-
publicstringDefaultScheme{get;set;}
67
+
publicstring?DefaultScheme{get;set;}
68
68
69
69
/// <summary>
70
70
/// Used as the default scheme by <see cref="IAuthenticationService.AuthenticateAsync(HttpContext, string)"/>.
71
71
/// </summary>
72
-
publicstringDefaultAuthenticateScheme{get;set;}
72
+
publicstring?DefaultAuthenticateScheme{get;set;}
73
73
74
74
/// <summary>
75
75
/// Used as the default scheme by <see cref="IAuthenticationService.SignInAsync(HttpContext, string, System.Security.Claims.ClaimsPrincipal, AuthenticationProperties)"/>.
76
76
/// </summary>
77
-
publicstringDefaultSignInScheme{get;set;}
77
+
publicstring?DefaultSignInScheme{get;set;}
78
78
79
79
/// <summary>
80
80
/// Used as the default scheme by <see cref="IAuthenticationService.SignOutAsync(HttpContext, string, AuthenticationProperties)"/>.
81
81
/// </summary>
82
-
publicstringDefaultSignOutScheme{get;set;}
82
+
publicstring?DefaultSignOutScheme{get;set;}
83
83
84
84
/// <summary>
85
85
/// Used as the default scheme by <see cref="IAuthenticationService.ChallengeAsync(HttpContext, string, AuthenticationProperties)"/>.
86
86
/// </summary>
87
-
publicstringDefaultChallengeScheme{get;set;}
87
+
publicstring?DefaultChallengeScheme{get;set;}
88
88
89
89
/// <summary>
90
90
/// Used as the default scheme by <see cref="IAuthenticationService.ForbidAsync(HttpContext, string, AuthenticationProperties)"/>.
91
91
/// </summary>
92
-
publicstringDefaultForbidScheme{get;set;}
92
+
publicstring?DefaultForbidScheme{get;set;}
93
93
94
94
/// <summary>
95
95
/// If true, SignIn should throw if attempted with a ClaimsPrincipal.Identity.IsAuthenticated = false.
0 commit comments