10 overrides of SecurityKeys
System.ServiceModel.Primitives (9)
System\IdentityModel\Tokens\GenericXmlSecurityToken.cs (1)
72public override ReadOnlyCollection<SecurityKey> SecurityKeys
System\IdentityModel\Tokens\KerberosRequestorSecurityToken.cs (1)
47public override ReadOnlyCollection<SecurityKey> SecurityKeys
System\IdentityModel\Tokens\UserNameSecurityToken.cs (1)
45public override ReadOnlyCollection<SecurityKey> SecurityKeys
System\IdentityModel\Tokens\X509SecurityToken.cs (1)
68public override ReadOnlyCollection<SecurityKey> SecurityKeys
System\ServiceModel\Security\Tokens\BinarySecretSecurityToken.cs (1)
97public override ReadOnlyCollection<SecurityKey> SecurityKeys
System\ServiceModel\Security\Tokens\DerivedKeySecurityToken.cs (1)
94public override ReadOnlyCollection<SecurityKey> SecurityKeys
System\ServiceModel\Security\Tokens\DerivedKeySecurityTokenStub.cs (1)
40public override ReadOnlyCollection<SecurityKey> SecurityKeys => null;
System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (1)
88public override ReadOnlyCollection<SecurityKey> SecurityKeys
System\ServiceModel\Security\Tokens\SspiSecurityToken.cs (1)
77public override ReadOnlyCollection<SecurityKey> SecurityKeys
System.ServiceModel.Primitives.Tests (1)
IdentityModel\SecurityTokenProviderTest.cs (1)
260public override ReadOnlyCollection<SecurityKey> SecurityKeys => default;
10 references to SecurityKeys
System.ServiceModel.Primitives (10)
System\IdentityModel\Tokens\GenericXmlSecurityToken.cs (1)
78return ProofToken.SecurityKeys;
System\IdentityModel\Tokens\SecurityToken.cs (2)
47if (SecurityKeys.Count != 0 && MatchesKeyIdentifierClause(keyIdentifierClause)) 49return SecurityKeys[0];
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (1)
99ReadOnlyCollection<SecurityKey> keys = token.SecurityKeys;
System\ServiceModel\Security\SecurityUtils.cs (6)
317if (token.SecurityKeys != null) 319for (int i = 0; i < token.SecurityKeys.Count; ++i) 321T temp = (token.SecurityKeys[i] as T); 372if (token.SecurityKeys == null) 377for (int i = 0; i < token.SecurityKeys.Count; ++i) 379if (token.SecurityKeys[i].IsSupportedAlgorithm(algorithm))