5 writes to ServiceTokenResolver
System.IdentityModel (5)
System\IdentityModel\Configuration\IdentityConfiguration.cs (5)
331this.SecurityTokenHandlers.Configuration.ServiceTokenResolver = new AggregateTokenResolver(new SecurityTokenResolver[] { serviceCertificateResolver, tokenResolver }); 335this.SecurityTokenHandlers.Configuration.ServiceTokenResolver = serviceCertificateResolver; 617handlerConfiguration.ServiceTokenResolver = GetServiceTokenResolver(element); 737handlerConfiguration.ServiceTokenResolver = CustomTypeElement.Resolve<SecurityTokenResolver>(element.ServiceTokenResolver); 871_serviceHandlerConfiguration.ServiceTokenResolver = value;
19 references to ServiceTokenResolver
System.IdentityModel (12)
System\IdentityModel\Configuration\IdentityConfiguration.cs (2)
327SecurityTokenResolver tokenResolver = this.SecurityTokenHandlers.Configuration.ServiceTokenResolver; 862return _serviceHandlerConfiguration.ServiceTokenResolver;
System\IdentityModel\Tokens\EncryptedSecurityTokenHandler.cs (2)
129if (this.Configuration.ServiceTokenResolver == null) 147this.Configuration.ServiceTokenResolver.TryResolveSecurityKey(clause, out decryptionKey);
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (5)
637if (Configuration.ServiceTokenResolver == null) 644ReadOnlyCollection<SecurityKey> keys = this.ResolveSecurityKeys(assertion, Configuration.ServiceTokenResolver); 2603if (this.Configuration.ServiceTokenResolver == null) 2619Configuration.ServiceTokenResolver, 4706Configuration.ServiceTokenResolver,
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (3)
2369subject.Crypto = new SecurityKeyElement(subject.KeyIdentifier, this.Configuration.ServiceTokenResolver); 3360if (this.Configuration.ServiceTokenResolver == null) 3368if (this.Configuration.ServiceTokenResolver.TryResolveSecurityKey(clause, out key))
System.ServiceModel (7)
System\ServiceModel\Security\FederatedSecurityTokenManager.cs (6)
193outOfBandTokenResolver = saml11SecurityTokenHandler.Configuration.ServiceTokenResolver; 212outOfBandTokenResolver = saml2SecurityTokenHandler.Configuration.ServiceTokenResolver; 536resolvers.Add( saml11SecurityTokenHandler.Configuration.ServiceTokenResolver ); 537resolvers.Add( saml2SecurityTokenHandler.Configuration.ServiceTokenResolver ); 549outOfBandTokenResolver = saml2SecurityTokenHandler.Configuration.ServiceTokenResolver; 560outOfBandTokenResolver = saml11SecurityTokenHandler.Configuration.ServiceTokenResolver;
System\ServiceModel\Security\WSTrustServiceContract.cs (1)
145SecurityTokenResolver tokenResolver = _securityTokenServiceConfiguration.SecurityTokenHandlers.Configuration.ServiceTokenResolver;