19 references to TcpClientCredentialType
System.ServiceModel (19)
System\ServiceModel\Configuration\Properties.cs (2)
3527properties.Add(new ConfigurationProperty("clientCredentialType", typeof(System.ServiceModel.TcpClientCredentialType), System.ServiceModel.TcpClientCredentialType.Windows, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.TcpClientCredentialTypeHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Configuration\TcpTransportSecurityElement.cs (2)
22public TcpClientCredentialType ClientCredentialType 24get { return (TcpClientCredentialType)base[ConfigurationStrings.ClientCredentialType]; }
System\ServiceModel\NetTcpBinding.cs (1)
317if ((transport != null) && (transport.ClientCredentialType == TcpClientCredentialType.Certificate))
System\ServiceModel\TcpClientCredentialType.cs (4)
17internal static bool IsDefined(TcpClientCredentialType value) 19return (value == TcpClientCredentialType.None || 20value == TcpClientCredentialType.Windows || 21value == TcpClientCredentialType.Certificate);
System\ServiceModel\TcpTransportSecurity.cs (10)
17internal const TcpClientCredentialType DefaultClientCredentialType = TcpClientCredentialType.Windows; 20TcpClientCredentialType clientCredentialType; 34public TcpClientCredentialType ClientCredentialType 136if (this.clientCredentialType == TcpClientCredentialType.Certificate || this.clientCredentialType == TcpClientCredentialType.None) 138return this.CreateSslBindingElement(this.clientCredentialType == TcpClientCredentialType.Certificate); 154transportSecurity.ClientCredentialType = TcpClientCredentialType.Windows; 160transportSecurity.ClientCredentialType = requireClientCertificate ? TcpClientCredentialType.Certificate : TcpClientCredentialType.None;