2 instantiations of SecurityTokenHandlerCollection
System.IdentityModel (2)
System\IdentityModel\Configuration\IdentityConfiguration.cs (1)
493handlerCollection = new SecurityTokenHandlerCollection(handlerConfiguration);
System\IdentityModel\Tokens\SecurityTokenHandlerCollection.cs (1)
193SecurityTokenHandlerCollection collection = new SecurityTokenHandlerCollection(new SecurityTokenHandler[] {
69 references to SecurityTokenHandlerCollection
System.IdentityModel (51)
System\IdentityModel\Configuration\IdentityConfiguration.cs (8)
293/// <see cref="SecurityTokenHandlerCollection"/> objects contained in 309SecurityTokenHandlerCollection defaultCollection = this.SecurityTokenHandlers; 447SecurityTokenHandlerCollection handlerCollection; 512manager[SecurityTokenHandlerCollectionManager.Usage.Default] = SecurityTokenHandlerCollection.CreateDefaultSecurityTokenHandlerCollection(_serviceHandlerConfiguration); 526manager[SecurityTokenHandlerCollectionManager.Usage.Default] = SecurityTokenHandlerCollection.CreateDefaultSecurityTokenHandlerCollection(_serviceHandlerConfiguration); 642/// Loads configuration elements pertaining to the <see cref="SecurityTokenHandlerCollection"/> 897/// The <see cref="SecurityTokenHandlerCollection" /> collection of <see cref="SecurityTokenHandler" /> 902public SecurityTokenHandlerCollection SecurityTokenHandlers
System\IdentityModel\Diagnostics\SecurityTraceRecordHelper.cs (4)
196SecurityTokenHandlerCollection defaultHandlers = SecurityTokenHandlerCollection.CreateDefaultSecurityTokenHandlerCollection(); 222SecurityTokenHandlerCollection sthc = SecurityTokenHandlerCollection.CreateDefaultSecurityTokenHandlerCollection();
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationContext.cs (1)
108public SecurityTokenHandlerCollection SecurityTokenHandlers
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (1)
2926SecurityTokenHandlerCollection tokenHandlerCollection = null;
System\IdentityModel\Tokens\EncryptedSecurityTokenHandler.cs (3)
86SecurityTokenHandlerCollection sthc = ( ContainingCollection != null ) ? 87ContainingCollection : SecurityTokenHandlerCollection.CreateDefaultSecurityTokenHandlerCollection(); 116/// <exception cref="InvalidOperationException">The ContainingCollection (<see cref="SecurityTokenHandlerCollection"/>) is unable to find a <see cref="SecurityTokenHandler"/> that is able to read the decrypted xml and return a <see cref="SecurityToken"/>.</exception>
System\IdentityModel\Tokens\Saml2SecurityTokenHandler.cs (2)
178SecurityTokenHandlerCollection sthc = ( ContainingCollection != null ) ? 179ContainingCollection : SecurityTokenHandlerCollection.CreateDefaultSecurityTokenHandlerCollection();
System\IdentityModel\Tokens\SamlSecurityTokenHandler.cs (2)
3595SecurityTokenHandlerCollection sthc = (ContainingCollection != null) ? 3596ContainingCollection : SecurityTokenHandlerCollection.CreateDefaultSecurityTokenHandlerCollection();
System\IdentityModel\Tokens\SecurityTokenElement.cs (6)
27SecurityTokenHandlerCollection _securityTokenHandlers; 62public SecurityTokenElement(XmlElement securityTokenXml, SecurityTokenHandlerCollection securityTokenHandlers) 82/// <see cref="SecurityTokenElement(XmlElement, SecurityTokenHandlerCollection)"/>. 133protected virtual ReadOnlyCollection<ClaimsIdentity> ValidateToken(XmlElement securityTokenXml, SecurityTokenHandlerCollection securityTokenHandlers) 148/// <param name="securityTokenHandlers">The <see cref="SecurityTokenHandlerCollection"/> used to 152SecurityTokenHandlerCollection securityTokenHandlers)
System\IdentityModel\Tokens\SecurityTokenHandler.cs (2)
22private SecurityTokenHandlerCollection collection; 81public SecurityTokenHandlerCollection ContainingCollection
System\IdentityModel\Tokens\SecurityTokenHandlerCollection.cs (7)
30/// Creates an instance of <see cref="SecurityTokenHandlerCollection"/>. 39/// Creates an instance of <see cref="SecurityTokenHandlerCollection"/>. 55/// Creates an instance of <see cref="SecurityTokenHandlerCollection"/> 68/// Creates an instance of <see cref="SecurityTokenHandlerCollection"/> 179public static SecurityTokenHandlerCollection CreateDefaultSecurityTokenHandlerCollection() 190public static SecurityTokenHandlerCollection CreateDefaultSecurityTokenHandlerCollection(SecurityTokenHandlerConfiguration configuration) 193SecurityTokenHandlerCollection collection = new SecurityTokenHandlerCollection(new SecurityTokenHandler[] {
System\IdentityModel\Tokens\SecurityTokenHandlerCollectionManager.cs (7)
17/// A class which manages multiple named <see cref="SecurityTokenHandlerCollection"/>. 21private Dictionary<string, SecurityTokenHandlerCollection> collections = new Dictionary<string, SecurityTokenHandlerCollection>(); 66public IEnumerable<SecurityTokenHandlerCollection> SecurityTokenHandlerCollections 83public SecurityTokenHandlerCollection this[string usage] 123SecurityTokenHandlerCollection defaultHandlers = SecurityTokenHandlerCollection.CreateDefaultSecurityTokenHandlerCollection();
System\IdentityModel\Tokens\SecurityTokenSerializerAdapter.cs (4)
27SecurityTokenHandlerCollection _securityTokenHandlers; 33/// The <see cref="SecurityTokenHandlerCollection" /> containing the set of <see cref="SecurityTokenHandler" /> 35public SecurityTokenSerializerAdapter(SecurityTokenHandlerCollection securityTokenHandlerCollection) 53public SecurityTokenHandlerCollection SecurityTokenHandlers
System\IdentityModel\Tokens\SessionSecurityTokenHandler.cs (4)
252SecurityTokenHandlerCollection bootstrapTokenCollection = CreateBootstrapTokenHandlerCollection(); 527SecurityTokenHandlerCollection CreateBootstrapTokenHandlerCollection() 529SecurityTokenHandlerCollection tokenHandlerCollection = this.ContainingCollection ?? SecurityTokenHandlerCollection.CreateDefaultSecurityTokenHandlerCollection();
System.ServiceModel (18)
System\ServiceModel\Security\FederatedSecurityTokenManager.cs (2)
37SecurityTokenHandlerCollection _securityTokenHandlerCollection; 71public SecurityTokenHandlerCollection SecurityTokenHandlers
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (2)
80SecurityTokenHandlerCollection securityTokenHandlerCollection, 406SecurityTokenHandlerCollection securityTokenHandlerCollection)
System\ServiceModel\Security\SctClaimsHandler.cs (3)
18SecurityTokenHandlerCollection _securityTokenHandlerCollection; 25SecurityTokenHandlerCollection securityTokenHandlerCollection, 53public SecurityTokenHandlerCollection SecurityTokenHandlerCollection
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
472SecurityTokenHandlerCollection tokenHandlerCollection = null;
System\ServiceModel\Security\WsSecurityTokenSerializerAdapter.cs (10)
29SecurityTokenHandlerCollection _securityTokenHandlers; 37/// The <see cref="SecurityTokenHandlerCollection" /> containing the set of <see cref="SecurityTokenHandler" /> 40public WsSecurityTokenSerializerAdapter( SecurityTokenHandlerCollection securityTokenHandlerCollection ) 49/// The <see cref="SecurityTokenHandlerCollection" /> containing the set of <see cref="SecurityTokenHandler" /> 53public WsSecurityTokenSerializerAdapter( SecurityTokenHandlerCollection securityTokenHandlerCollection, SecurityVersion securityVersion ) 62/// The <see cref="SecurityTokenHandlerCollection" /> containing the set of <see cref="SecurityTokenHandler" /> 70public WsSecurityTokenSerializerAdapter( SecurityTokenHandlerCollection securityTokenHandlerCollection, SecurityVersion securityVersion, bool emitBspAttributes, SamlSerializer samlSerializer, SecurityStateEncoder stateEncoder, IEnumerable<Type> knownTypes ) 79/// The <see cref="SecurityTokenHandlerCollection" /> containing the set of <see cref="SecurityTokenHandler" /> 89public WsSecurityTokenSerializerAdapter( SecurityTokenHandlerCollection securityTokenHandlerCollection, SecurityVersion securityVersion, TrustVersion trustVersion, SecureConversationVersion secureConversationVersion, bool emitBspAttributes, SamlSerializer samlSerializer, SecurityStateEncoder stateEncoder, IEnumerable<Type> knownTypes ) 120public SecurityTokenHandlerCollection SecurityTokenHandlers