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