Esempio n. 1
0
 public async Task SignInAsync(SignInContext context)
 {
     if (context.AuthenticationScheme == _options.Authentication.EffectiveAuthenticationScheme)
     {
         AugmentContext(context);
         await RaiseSignInEventAsync(context.Principal);
     }
     await _handler.SignInAsync(context);
 }