15 references to TcpClientCredentialType
dotnet-svcutil-lib (15)
CodeDomFixup\MethodCreationHelper.cs (1)
1751new CodeTypeReferenceExpression(typeof(TcpClientCredentialType)),
FrameworkFork\System.ServiceModel\System\ServiceModel\TcpClientCredentialType.cs (4)
18internal static bool IsDefined(TcpClientCredentialType value) 20return (value == TcpClientCredentialType.None || 21value == TcpClientCredentialType.Windows || 22value == TcpClientCredentialType.Certificate);
FrameworkFork\System.ServiceModel\System\ServiceModel\TcpTransportSecurity.cs (10)
15internal const TcpClientCredentialType DefaultClientCredentialType = TcpClientCredentialType.Windows; 18private TcpClientCredentialType _clientCredentialType; 30public TcpClientCredentialType ClientCredentialType 107if (_clientCredentialType == TcpClientCredentialType.Certificate || _clientCredentialType == TcpClientCredentialType.None) 109return this.CreateSslBindingElement(_clientCredentialType == TcpClientCredentialType.Certificate); 124transportSecurity.ClientCredentialType = TcpClientCredentialType.Windows; 130transportSecurity.ClientCredentialType = requireClientCertificate ? TcpClientCredentialType.Certificate : TcpClientCredentialType.None;