public IActionResult ChallengeWithEmptyAuthenticationProperties()
 {
     return(this.Challenge(TestObjectFactory.GetEmptyAuthenticationProperties()));
 }
 public IActionResult ForbidWithEmptyAuthenticationProperties()
 {
     return(this.Forbid(TestObjectFactory.GetEmptyAuthenticationProperties()));
 }
Пример #3
0
 public IActionResult SignInWithEmptyAuthenticationPropertiesAndScheme()
 {
     return(this.SignIn(ClaimsPrincipalBuilder.DefaultAuthenticated,
                        TestObjectFactory.GetEmptyAuthenticationProperties(),
                        AuthenticationScheme.Basic));
 }