7 writes to TokenType
dotnet-svcutil-lib (7)
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 (5)
131tokenRequirement.TokenType = ServiceModelSecurityTokenTypes.SspiCredential; 138sspiTokenRequirement.TokenType = ServiceModelSecurityTokenTypes.SspiCredential; 191digestTokenRequirement.TokenType = ServiceModelSecurityTokenTypes.SspiCredential; 213certificateTokenRequirement.TokenType = SecurityTokenTypes.X509Certificate; 304usernameRequirement.TokenType = SecurityTokenTypes.UserName;
8 references to TokenType
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (8)
83if (requirement.TokenType == ServiceModelSecurityTokenTypes.AnonymousSslnego || requirement.TokenType == ServiceModelSecurityTokenTypes.MutualSslnego 84|| requirement.TokenType == ServiceModelSecurityTokenTypes.SecureConversation || requirement.TokenType == ServiceModelSecurityTokenTypes.Spnego) 104if (tokenRequirement is RecipientServiceModelSecurityTokenRequirement && tokenRequirement.TokenType == SecurityTokenTypes.X509Certificate && tokenRequirement.KeyUsage == SecurityKeyUsage.Exchange) 116string tokenType = initiatorRequirement.TokenType; 210string tokenType = initiatorRequirement.TokenType; 248else if ((tokenRequirement is RecipientServiceModelSecurityTokenRequirement) && tokenRequirement.TokenType == SecurityTokenTypes.X509Certificate)