Ejemplo n.º 1
0
 public SamlTokenService(
     IRealmTracker realmTracker,
     ISecurityTokenServiceConfigurationFactory configurationFactory)
 {
     this.realmTracker         = realmTracker;
     this.configurationFactory = configurationFactory;
 }
Ejemplo n.º 2
0
 public SamlTokenService(
     IRealmTracker realmTracker, 
     ISecurityTokenServiceConfigurationFactory configurationFactory)
 {
     this.realmTracker = realmTracker;
     this.configurationFactory = configurationFactory;
 }
Ejemplo 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;
 }
Ejemplo n.º 5
0
 public SsoController(IClaimsPrincipalFactory claimsPrincipalFactory, HttpContextBase httpContextBase, IRealmTracker realmTracker)
 {
     this._claimsPrincipalFactory = claimsPrincipalFactory;
     this.httpContextBase         = httpContextBase;
     this.realmTracker            = realmTracker;
 }