@@ -541,10 +541,18 @@ protected ControllerBase() { }
541
541
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
542
542
public virtual Microsoft . AspNetCore . Mvc . RedirectToRouteResult RedirectToRoutePreserveMethod ( string routeName = null , object routeValues = null , string fragment = null ) { throw null ; }
543
543
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
544
+ public virtual Microsoft . AspNetCore . Mvc . SignInResult SignIn ( System . Security . Claims . ClaimsPrincipal principal ) { throw null ; }
545
+ [ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
546
+ public virtual Microsoft . AspNetCore . Mvc . SignInResult SignIn ( System . Security . Claims . ClaimsPrincipal principal , Microsoft . AspNetCore . Authentication . AuthenticationProperties properties ) { throw null ; }
547
+ [ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
544
548
public virtual Microsoft . AspNetCore . Mvc . SignInResult SignIn ( System . Security . Claims . ClaimsPrincipal principal , Microsoft . AspNetCore . Authentication . AuthenticationProperties properties , string authenticationScheme ) { throw null ; }
545
549
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
546
550
public virtual Microsoft . AspNetCore . Mvc . SignInResult SignIn ( System . Security . Claims . ClaimsPrincipal principal , string authenticationScheme ) { throw null ; }
547
551
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
552
+ public virtual Microsoft . AspNetCore . Mvc . SignOutResult SignOut ( ) { throw null ; }
553
+ [ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
554
+ public virtual Microsoft . AspNetCore . Mvc . SignOutResult SignOut ( Microsoft . AspNetCore . Authentication . AuthenticationProperties properties ) { throw null ; }
555
+ [ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
548
556
public virtual Microsoft . AspNetCore . Mvc . SignOutResult SignOut ( Microsoft . AspNetCore . Authentication . AuthenticationProperties properties , params string [ ] authenticationSchemes ) { throw null ; }
549
557
[ Microsoft . AspNetCore . Mvc . NonActionAttribute ]
550
558
public virtual Microsoft . AspNetCore . Mvc . SignOutResult SignOut ( params string [ ] authenticationSchemes ) { throw null ; }
@@ -1170,6 +1178,8 @@ public ServiceFilterAttribute(System.Type type) { }
1170
1178
}
1171
1179
public partial class SignInResult : Microsoft . AspNetCore . Mvc . ActionResult
1172
1180
{
1181
+ public SignInResult ( System . Security . Claims . ClaimsPrincipal principal ) { }
1182
+ public SignInResult ( System . Security . Claims . ClaimsPrincipal principal , Microsoft . AspNetCore . Authentication . AuthenticationProperties properties ) { }
1173
1183
public SignInResult ( string authenticationScheme , System . Security . Claims . ClaimsPrincipal principal ) { }
1174
1184
public SignInResult ( string authenticationScheme , System . Security . Claims . ClaimsPrincipal principal , Microsoft . AspNetCore . Authentication . AuthenticationProperties properties ) { }
1175
1185
public string AuthenticationScheme { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
@@ -1181,6 +1191,7 @@ public SignInResult(string authenticationScheme, System.Security.Claims.ClaimsPr
1181
1191
public partial class SignOutResult : Microsoft . AspNetCore . Mvc . ActionResult
1182
1192
{
1183
1193
public SignOutResult ( ) { }
1194
+ public SignOutResult ( Microsoft . AspNetCore . Authentication . AuthenticationProperties properties ) { }
1184
1195
public SignOutResult ( System . Collections . Generic . IList < string > authenticationSchemes ) { }
1185
1196
public SignOutResult ( System . Collections . Generic . IList < string > authenticationSchemes , Microsoft . AspNetCore . Authentication . AuthenticationProperties properties ) { }
1186
1197
public SignOutResult ( string authenticationScheme ) { }
0 commit comments