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