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