@@ -22,8 +22,8 @@ protected AuthenticateResult() { }
22
22
}
23
23
public static partial class AuthenticationHttpContextExtensions
24
24
{
25
- public static System . Threading . Tasks . Task < Microsoft . AspNetCore . Authentication . AuthenticateResult ? > AuthenticateAsync ( this Microsoft . AspNetCore . Http . HttpContext context ) { throw null ; }
26
- public static System . Threading . Tasks . Task < Microsoft . AspNetCore . Authentication . AuthenticateResult ? > AuthenticateAsync ( this Microsoft . AspNetCore . Http . HttpContext context , string ? scheme ) { throw null ; }
25
+ public static System . Threading . Tasks . Task < Microsoft . AspNetCore . Authentication . AuthenticateResult > AuthenticateAsync ( this Microsoft . AspNetCore . Http . HttpContext context ) { throw null ; }
26
+ public static System . Threading . Tasks . Task < Microsoft . AspNetCore . Authentication . AuthenticateResult > AuthenticateAsync ( this Microsoft . AspNetCore . Http . HttpContext context , string ? scheme ) { throw null ; }
27
27
public static System . Threading . Tasks . Task ChallengeAsync ( this Microsoft . AspNetCore . Http . HttpContext context ) { throw null ; }
28
28
public static System . Threading . Tasks . Task ChallengeAsync ( this Microsoft . AspNetCore . Http . HttpContext context , Microsoft . AspNetCore . Authentication . AuthenticationProperties ? properties ) { throw null ; }
29
29
public static System . Threading . Tasks . Task ChallengeAsync ( this Microsoft . AspNetCore . Http . HttpContext context , string scheme ) { throw null ; }
@@ -157,7 +157,7 @@ public partial interface IAuthenticationSchemeProvider
157
157
}
158
158
public partial interface IAuthenticationService
159
159
{
160
- System . Threading . Tasks . Task < Microsoft . AspNetCore . Authentication . AuthenticateResult ? > AuthenticateAsync ( Microsoft . AspNetCore . Http . HttpContext context , string ? scheme ) ;
160
+ System . Threading . Tasks . Task < Microsoft . AspNetCore . Authentication . AuthenticateResult > AuthenticateAsync ( Microsoft . AspNetCore . Http . HttpContext context , string ? scheme ) ;
161
161
System . Threading . Tasks . Task ChallengeAsync ( Microsoft . AspNetCore . Http . HttpContext context , string ? scheme , Microsoft . AspNetCore . Authentication . AuthenticationProperties ? properties ) ;
162
162
System . Threading . Tasks . Task ForbidAsync ( Microsoft . AspNetCore . Http . HttpContext context , string ? scheme , Microsoft . AspNetCore . Authentication . AuthenticationProperties ? properties ) ;
163
163
System . Threading . Tasks . Task SignInAsync ( Microsoft . AspNetCore . Http . HttpContext context , string ? scheme , System . Security . Claims . ClaimsPrincipal principal , Microsoft . AspNetCore . Authentication . AuthenticationProperties ? properties ) ;
0 commit comments