Esempio n. 1
0
 public SamlTokenService(
     IRealmTracker realmTracker,
     ISecurityTokenServiceConfigurationFactory configurationFactory)
 {
     this.realmTracker         = realmTracker;
     this.configurationFactory = configurationFactory;
 }
Esempio n. 2
0
 public SamlTokenService(
     IRealmTracker realmTracker, 
     ISecurityTokenServiceConfigurationFactory configurationFactory)
 {
     this.realmTracker = realmTracker;
     this.configurationFactory = configurationFactory;
 }
Esempio n. 3
0
 public SsoController(IClaimsPrincipalFactory claimsPrincipalFactory, HttpContextBase httpContextBase, IRealmTracker realmTracker)
 {
     this._claimsPrincipalFactory = claimsPrincipalFactory;
     this.httpContextBase = httpContextBase;
     this.realmTracker = realmTracker;
 }
 public SignOutController(HttpContextBase httpContextBase, IRealmTracker realmTracker)
 {
     this.httpContextBase = httpContextBase;
     this.realmTracker = realmTracker;
 }
Esempio n. 5
0
 public SsoController(IClaimsPrincipalFactory claimsPrincipalFactory, HttpContextBase httpContextBase, IRealmTracker realmTracker)
 {
     this._claimsPrincipalFactory = claimsPrincipalFactory;
     this.httpContextBase         = httpContextBase;
     this.realmTracker            = realmTracker;
 }