11 overrides of SecurityKeys
dotnet-svcutil-lib (11)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\KerberosRequestorSecurityToken.cs (1)
52public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\SamlSecurityToken.cs (1)
51public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\UserNameSecurityToken.cs (1)
42public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\WindowsSecurityToken.NetNative.cs (1)
23public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\X509SecurityToken.cs (1)
66public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\BinarySecretSecurityToken.cs (1)
85public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\DerivedKeySecurityToken.cs (1)
107public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\GenericXmlSecurityToken.cs (1)
97public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (1)
169public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\SspiSecurityToken.cs (1)
101public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\WrappedKeySecurityToken.cs (1)
152public override ReadOnlyCollection<SecurityKey> SecurityKeys
7 references to SecurityKeys
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\SecurityToken.cs (2)
42if (this.SecurityKeys.Count != 0 && MatchesKeyIdentifierClause(keyIdentifierClause)) 43return this.SecurityKeys[0];
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityAlgorithmSuite.cs (1)
293ReadOnlyCollection<SecurityKey> keys = token.SecurityKeys;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (3)
463if (token.SecurityKeys == null) 467for (int i = 0; i < token.SecurityKeys.Count; ++i) 469if (token.SecurityKeys[i].IsSupportedAlgorithm(algorithm))
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\GenericXmlSecurityToken.cs (1)
102return _proofToken.SecurityKeys;