Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. .AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme)
  2.  
  3. .AddAuthentication(options => {
  4. options.DefaultAuthenticateScheme = CookieAuthenticationDefaults.AuthenticationScheme;
  5. options.DefaultChallengeScheme = CookieAuthenticationDefaults.AuthenticationScheme;
  6. options.DefaultSignInScheme = CookieAuthenticationDefaults.AuthenticationScheme;
  7. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement