3 instantiations of TcpTransportSecurity
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (1)
366
TcpTransportSecurity tcpTransportSecurity = new
TcpTransportSecurity
();
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpSecurity.cs (2)
21
: this(DefaultMode, new
TcpTransportSecurity
(), new MessageSecurityOverTcp())
35
_transportSecurity = transportSecurity == null ? new
TcpTransportSecurity
() : transportSecurity;
15 references to TcpTransportSecurity
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (3)
366
TcpTransportSecurity
tcpTransportSecurity = new TcpTransportSecurity();
395
private static bool SetTransportSecurity(BindingElement transport, SecurityMode mode,
TcpTransportSecurity
transportSecurity)
416
private static bool TryCreateSecurity(SecurityBindingElement sbe, UnifiedSecurityMode mode, bool isReliableSession, BindingElement transportSecurity,
TcpTransportSecurity
tcpTransportSecurity, out NetTcpSecurity security)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpSecurity.cs (7)
17
private
TcpTransportSecurity
_transportSecurity;
25
private NetTcpSecurity(SecurityMode mode,
TcpTransportSecurity
transportSecurity, MessageSecurityOverTcp messageSecurity)
53
public
TcpTransportSecurity
Transport
94
internal static bool SetTransportSecurity(BindingElement transport, SecurityMode mode,
TcpTransportSecurity
transportSecurity)
98
return
TcpTransportSecurity
.SetTransportProtectionOnly(transport, transportSecurity);
102
return
TcpTransportSecurity
.SetTransportProtectionAndAuthentication(transport, transportSecurity);
123
internal static bool TryCreate(SecurityBindingElement wsSecurity, SecurityMode mode, bool isReliableSessionEnabled, BindingElement transportSecurity,
TcpTransportSecurity
tcpTransportSecurity, out NetTcpSecurity security)
FrameworkFork\System.ServiceModel\System\ServiceModel\TcpTransportSecurity.cs (5)
83
private static bool IsSslBindingElement(BindingElement element,
TcpTransportSecurity
transportSecurity, out bool requireClientCertificate)
99
internal static bool SetTransportProtectionOnly(BindingElement transport,
TcpTransportSecurity
transportSecurity)
119
internal static bool SetTransportProtectionAndAuthentication(BindingElement transport,
TcpTransportSecurity
transportSecurity)
138
return this.ClientCredentialType !=
TcpTransportSecurity
.DefaultClientCredentialType
139
|| _protectionLevel !=
TcpTransportSecurity
.DefaultProtectionLevel;