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