public WindowsFederationClaimsAuthenticationManager(ILog log, IWindowsFederationIdentityFactory windowsFederationIdentityFactory)
 {
     this.Log = log ?? throw new ArgumentNullException(nameof(log));
     this.WindowsFederationIdentityFactory = windowsFederationIdentityFactory ?? throw new ArgumentNullException(nameof(windowsFederationIdentityFactory));
 }
 protected internal IdentityResolver(IFormsAuthentication formsAuthentication, ILog log, IWindowsFederationIdentityFactory windowsFederationIdentityFactory)
 {
     this.FormsAuthentication = formsAuthentication ?? throw new ArgumentNullException(nameof(formsAuthentication));
     this.Log = log ?? throw new ArgumentNullException(nameof(log));
     this.WindowsFederationIdentityFactory = windowsFederationIdentityFactory ?? throw new ArgumentNullException(nameof(windowsFederationIdentityFactory));
 }
Beispiel #3
0
 public FederationAuthenticationModule(IFormsAuthentication formsAuthentication, IFormsAuthenticationTicketFactory formsAuthenticationTicketFactory, ILog log, IRedirectInformationFactory redirectInformationFactory, IWebFacade webFacade, IWindowsFederationIdentityFactory windowsFederationIdentityFactory)
 {
     this.FormsAuthentication = formsAuthentication ?? throw new ArgumentNullException(nameof(formsAuthentication));
     this.FormsAuthenticationTicketFactory = formsAuthenticationTicketFactory ?? throw new ArgumentNullException(nameof(formsAuthenticationTicketFactory));
     this.Log = log ?? throw new ArgumentNullException(nameof(log));
     this.RedirectInformationFactory = redirectInformationFactory ?? throw new ArgumentNullException(nameof(redirectInformationFactory));
     this.WebFacade = webFacade ?? throw new ArgumentNullException(nameof(webFacade));
     this.WindowsFederationIdentityFactory = windowsFederationIdentityFactory ?? throw new ArgumentNullException(nameof(windowsFederationIdentityFactory));
 }
 public IdentityResolver(IFormsAuthentication formsAuthentication, IWindowsFederationIdentityFactory windowsFederationIdentityFactory) : this(formsAuthentication, _log, windowsFederationIdentityFactory)
 {
 }