11 instantiations of HttpTransportSecurity
dotnet-svcutil-lib (11)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (1)
176HttpTransportSecurity transportSecurity = new HttpTransportSecurity();
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpSecurity.cs (3)
18: this(DefaultMode, new HttpTransportSecurity(), new BasicHttpMessageSecurity()) 26_transportSecurity = transportSecurity == null ? new HttpTransportSecurity() : transportSecurity; 49_transportSecurity = (value == null) ? new HttpTransportSecurity() : value;
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpsSecurity.cs (2)
16: this(DefaultMode, new HttpTransportSecurity()) 26HttpTransportSecurity httpTransportSecurity = transportSecurity == null ? new HttpTransportSecurity() : transportSecurity;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeBindings.cs (1)
169new WSHttpSecurity(SecurityMode.Transport, new HttpTransportSecurity(), new NonDualMessageSecurityOverHttp()), reliableSessionEnabled: false);
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (1)
220HttpTransportSecurity transportSecurity = new HttpTransportSecurity();
FrameworkFork\System.ServiceModel\System\ServiceModel\WS2007FederationHttpBinding.cs (1)
73HttpTransportSecurity transportSecurity = new HttpTransportSecurity();
FrameworkFork\System.ServiceModel\System\ServiceModel\WSFederationHttpBinding.cs (1)
110HttpTransportSecurity transportSecurity = new HttpTransportSecurity();
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpSecurity.cs (1)
33HttpTransportSecurity transportSecurity = new HttpTransportSecurity();
41 references to HttpTransportSecurity
dotnet-svcutil-lib (41)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (1)
176HttpTransportSecurity transportSecurity = new HttpTransportSecurity();
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpSecurity.cs (8)
14private HttpTransportSecurity _transportSecurity; 22private BasicHttpSecurity(BasicHttpSecurityMode mode, HttpTransportSecurity transportSecurity, BasicHttpMessageSecurity messageSecurity) 44public HttpTransportSecurity Transport 74internal static void EnableTransportSecurity(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity) 76HttpTransportSecurity.ConfigureTransportProtectionAndAuthentication(https, transportSecurity); 84internal static bool IsEnabledTransportAuthentication(HttpTransportBindingElement http, HttpTransportSecurity transportSecurity) 86return HttpTransportSecurity.IsConfiguredTransportAuthentication(http, transportSecurity); 105internal static bool TryCreate(SecurityBindingElement sbe, UnifiedSecurityMode mode, HttpTransportSecurity transportSecurity, out BasicHttpSecurity security)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpsSecurity.cs (5)
20private BasicHttpsSecurity(BasicHttpsSecurityMode mode, HttpTransportSecurity transportSecurity) 26HttpTransportSecurity httpTransportSecurity = transportSecurity == null ? new HttpTransportSecurity() : transportSecurity; 53public HttpTransportSecurity Transport 100internal static void EnableTransportSecurity(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity) 105internal static bool IsEnabledTransportAuthentication(HttpTransportBindingElement http, HttpTransportSecurity transportSecurity)
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (4)
214internal static bool GetSecurityModeFromTransport(HttpTransportBindingElement http, HttpTransportSecurity transportSecurity, out UnifiedSecurityMode mode) 229else if (HttpTransportSecurity.IsDisabledTransportAuthentication(http)) 245internal static bool TryCreateSecurity(SecurityBindingElement securityElement, UnifiedSecurityMode mode, HttpTransportSecurity transportSecurity, out BasicHttpSecurity security) 327HttpTransportSecurity transport = security.Transport;
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpTransportSecurity.cs (3)
82private static void ConfigureAuthentication(HttpTransportBindingElement http, HttpTransportSecurity transportSecurity) 108internal static void ConfigureTransportProtectionAndAuthentication(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity) 124internal static bool IsConfiguredTransportAuthentication(HttpTransportBindingElement http, HttpTransportSecurity transportSecurity)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (1)
220HttpTransportSecurity transportSecurity = new HttpTransportSecurity();
FrameworkFork\System.ServiceModel\System\ServiceModel\WS2007FederationHttpBinding.cs (2)
73HttpTransportSecurity transportSecurity = new HttpTransportSecurity(); 108private static bool TryCreateSecurity(SecurityBindingElement sbe, WSFederationHttpSecurityMode mode, HttpTransportSecurity transportSecurity, bool isReliableSession, out WSFederationHttpSecurity security)
FrameworkFork\System.ServiceModel\System\ServiceModel\WS2007HttpBinding.cs (2)
72HttpTransportSecurity transportSecurity = WSHttpSecurity.GetDefaultHttpTransportSecurity(); 117private static bool TryCreateSecurity(SecurityBindingElement sbe, UnifiedSecurityMode mode, HttpTransportSecurity transportSecurity, bool isReliableSession, out WSHttpSecurity security)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSFederationHttpBinding.cs (3)
110HttpTransportSecurity transportSecurity = new HttpTransportSecurity(); 157internal static bool GetSecurityModeFromTransport(TransportBindingElement transport, HttpTransportSecurity transportSecurity, out WSFederationHttpSecurityMode mode) 181private static bool TryCreateSecurity(SecurityBindingElement sbe, WSFederationHttpSecurityMode mode, HttpTransportSecurity transportSecurity, bool isReliableSession, out WSFederationHttpSecurity security)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSFederationHttpSecurity.cs (1)
64HttpTransportSecurity transportSecurity,
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (3)
108HttpTransportSecurity transportSecurity = WSHttpSecurity.GetDefaultHttpTransportSecurity(); 166internal static bool GetSecurityModeFromTransport(TransportBindingElement transport, HttpTransportSecurity transportSecurity, out UnifiedSecurityMode mode) 206private static bool TryCreateSecurity(SecurityBindingElement sbe, UnifiedSecurityMode mode, HttpTransportSecurity transportSecurity, bool isReliableSession, out WSHttpSecurity security)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpSecurity.cs (8)
16private HttpTransportSecurity _transportSecurity; 24internal WSHttpSecurity(SecurityMode mode, HttpTransportSecurity transportSecurity, NonDualMessageSecurityOverHttp messageSecurity) 31internal static HttpTransportSecurity GetDefaultHttpTransportSecurity() 33HttpTransportSecurity transportSecurity = new HttpTransportSecurity(); 51public HttpTransportSecurity Transport 89internal static void ApplyTransportSecurity(HttpsTransportBindingElement transport, HttpTransportSecurity transportSecurity) 91HttpTransportSecurity.ConfigureTransportProtectionAndAuthentication(transport, transportSecurity); 106internal static bool TryCreate(SecurityBindingElement sbe, UnifiedSecurityMode mode, HttpTransportSecurity transportSecurity, bool isReliableSessionEnabled, out WSHttpSecurity security)