2 instantiations of NetTcpSecurity
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (1)
21
private NetTcpSecurity _security = new
NetTcpSecurity
();
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpSecurity.cs (1)
137
security = new
NetTcpSecurity
(mode, tcpTransportSecurity, messageSecurity);
10 references to NetTcpSecurity
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpBinding.cs (9)
21
private
NetTcpSecurity
_security = new NetTcpSecurity();
37
private NetTcpBinding(TcpTransportBindingElement transport, BinaryMessageEncodingBindingElement encoding, TransactionFlowBindingElement context, ReliableSessionBindingElement session,
NetTcpSecurity
security)
48
NetTcpSecurity
security)
133
public
NetTcpSecurity
Security
369
NetTcpSecurity
security;
392
return
NetTcpSecurity
.GetModeFromTransportSecurity(transport);
397
return
NetTcpSecurity
.SetTransportSecurity(transport, mode, transportSecurity);
416
private static bool TryCreateSecurity(SecurityBindingElement sbe, UnifiedSecurityMode mode, bool isReliableSession, BindingElement transportSecurity, TcpTransportSecurity tcpTransportSecurity, out
NetTcpSecurity
security)
426
if (
NetTcpSecurity
.TryCreate(sbe, securityMode, isReliableSession, transportSecurity, tcpTransportSecurity, out security))
FrameworkFork\System.ServiceModel\System\ServiceModel\NetTcpSecurity.cs (1)
123
internal static bool TryCreate(SecurityBindingElement wsSecurity, SecurityMode mode, bool isReliableSessionEnabled, BindingElement transportSecurity, TcpTransportSecurity tcpTransportSecurity, out
NetTcpSecurity
security)