12 references to SecurityTokenTypes
dotnet-svcutil-lib (12)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (2)
458serverCertRequirement.TokenType = SecurityTokenTypes.X509Certificate; 472clientCertRequirement.TokenType = SecurityTokenTypes.X509Certificate;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportSecurityHelpers.cs (2)
213certificateTokenRequirement.TokenType = SecurityTokenTypes.X509Certificate; 304usernameRequirement.TokenType = SecurityTokenTypes.UserName;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (8)
104if (tokenRequirement is RecipientServiceModelSecurityTokenRequirement && tokenRequirement.TokenType == SecurityTokenTypes.X509Certificate && tokenRequirement.KeyUsage == SecurityKeyUsage.Exchange) 121else if (tokenType == SecurityTokenTypes.X509Certificate) 136else if (tokenType == SecurityTokenTypes.Kerberos) 142else if (tokenType == SecurityTokenTypes.UserName) 215else if (tokenType == SecurityTokenTypes.X509Certificate) 232else if (tokenType == SecurityTokenTypes.Rsa) 236else if (tokenType == SecurityTokenTypes.Kerberos) 248else if ((tokenRequirement is RecipientServiceModelSecurityTokenRequirement) && tokenRequirement.TokenType == SecurityTokenTypes.X509Certificate)