3 writes to IdentityConfiguration
System.ServiceModel (3)
System\ServiceModel\Configuration\ServiceCredentialsElement.cs (1)
178behavior.IdentityConfiguration = new IdentityConfiguration( IdentityConfiguration );
System\ServiceModel\Security\WSTrustServiceHost.cs (1)
181Credentials.IdentityConfiguration = _serviceContract.SecurityTokenServiceConfiguration;
System\ServiceModel\ServiceConfiguration.cs (1)
143this.Credentials.IdentityConfiguration = value;
13 references to IdentityConfiguration
System.ServiceModel (13)
System\ServiceModel\Description\ServiceCredentials.cs (5)
248this.IdentityConfiguration.ServiceCertificate = serverCert; 254this.IdentityConfiguration.KnownIssuerCertificates = new List<X509Certificate2> (this.IssuedTokenAuthentication.KnownCertificates); 260if (!this.IdentityConfiguration.IsInitialized) 262this.IdentityConfiguration.Initialize(); 278if ((this.IdentityConfiguration.SecurityTokenHandlers[typeof(SecurityContextSecurityToken)] != null) &&
System\ServiceModel\Security\FederatedSecurityTokenManager.cs (3)
56if ( parentCredentials.IdentityConfiguration == null ) 63_securityTokenHandlerCollection = parentCredentials.IdentityConfiguration.SecurityTokenHandlers; 285sessionTokenHandler.Configuration.MaxClockSkew = ServiceCredentials.IdentityConfiguration.MaxClockSkew;
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (4)
68sc.IdentityConfiguration.SecurityTokenHandlers, 247transportTokenIdentityCollection.AddRange(serviceCreds.IdentityConfiguration.SecurityTokenHandlers.ValidateToken( transportToken )); 680claimsPrincipal = credentials.IdentityConfiguration.ClaimsAuthenticationManager.Authenticate(resource.AbsoluteUri, claimsPrincipal); 697bool authorized = credentials.IdentityConfiguration.ClaimsAuthorizationManager.CheckAccess(
System\ServiceModel\ServiceConfiguration.cs (1)
138return this.Credentials.IdentityConfiguration;