1 type derived from HttpTransportBindingElement
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsTransportBindingElement.cs (1)
15
:
HttpTransportBindingElement
, ITransportTokenAssertionProvider
6 instantiations of HttpTransportBindingElement
dotnet-svcutil-lib (6)
CodeDomFixup\MethodCreationHelper.cs (1)
1359
HttpTransportBindingElement defaultBindingElement = isHttps ? new HttpsTransportBindingElement() : new
HttpTransportBindingElement
();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpTransportBindingElement.cs (1)
397
return new
HttpTransportBindingElement
(this);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (1)
185
return new
HttpTransportBindingElement
();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeBindings.cs (1)
178
return CreateGetBinding(new
HttpTransportBindingElement
());
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (1)
23
_httpTransport = new
HttpTransportBindingElement
();
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (1)
175
_httpTransport = new
HttpTransportBindingElement
();
62 references to HttpTransportBindingElement
dotnet-svcutil-lib (62)
CodeDomFixup\EndpointSelector.cs (2)
127
if (!(bindingElement is
HttpTransportBindingElement
|| bindingElement is HttpsTransportBindingElement || bindingElement is TcpTransportBindingElement || bindingElement is NamedPipeTransportBindingElement))
130
typeof(
HttpTransportBindingElement
).FullName, typeof(HttpsTransportBindingElement).FullName, typeof(TcpTransportBindingElement).FullName));
CodeDomFixup\MethodCreationHelper.cs (5)
1004
HttpTransportBindingElement
httpTE = bindingElement as
HttpTransportBindingElement
;
1355
private static void AddHttpBindingElement(CodeStatementCollection statements, CodeVariableReferenceExpression customBinding,
HttpTransportBindingElement
bindingElement)
1358
Type bindingElementType = isHttps ? typeof(HttpsTransportBindingElement) : typeof(
HttpTransportBindingElement
);
1359
HttpTransportBindingElement
defaultBindingElement = isHttps ? new HttpsTransportBindingElement() : new HttpTransportBindingElement();
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (4)
71
private bool IsBindingElementsMatch(
HttpTransportBindingElement
transport, MessageEncodingBindingElement encoding)
89
internal override void InitializeFrom(
HttpTransportBindingElement
transport, MessageEncodingBindingElement encoding)
154
HttpTransportBindingElement
transport = null;
161
transport = element as
HttpTransportBindingElement
;
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpSecurity.cs (3)
79
internal void EnableTransportAuthentication(
HttpTransportBindingElement
http)
84
internal static bool IsEnabledTransportAuthentication(
HttpTransportBindingElement
http, HttpTransportSecurity transportSecurity)
89
internal void DisableTransportAuthentication(
HttpTransportBindingElement
http)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpsSecurity.cs (3)
105
internal static bool IsEnabledTransportAuthentication(
HttpTransportBindingElement
http, HttpTransportSecurity transportSecurity)
115
internal void EnableTransportAuthentication(
HttpTransportBindingElement
http)
120
internal void DisableTransportAuthentication(
HttpTransportBindingElement
http)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElementImporter.cs (5)
55
HttpTransportBindingElement
http = null;
63
http = element as
HttpTransportBindingElement
;
91
http = bindingElement as
HttpTransportBindingElement
;
138
HttpTransportBindingElement
http = bindingElement as
HttpTransportBindingElement
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (1)
52
internal HttpChannelFactory(
HttpTransportBindingElement
bindingElement, BindingContext context)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsTransportBindingElement.cs (2)
33
private HttpsTransportBindingElement(
HttpTransportBindingElement
elementToBeCloned)
109
internal static HttpsTransportBindingElement CreateFromHttpBindingElement(
HttpTransportBindingElement
elementToBeCloned)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpTransportBindingElement.cs (3)
61
protected HttpTransportBindingElement(
HttpTransportBindingElement
elementToBeCloned)
575
HttpTransportBindingElement
http = b as
HttpTransportBindingElement
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ReliableSessionBindingElement.cs (2)
287
HttpTransportBindingElement
httpElement = transportElement as
HttpTransportBindingElement
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\StandardBindingImporter.cs (1)
36
if (transport is
HttpTransportBindingElement
)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (5)
91
if (address.Uri.Scheme == /*TODO: Uri.UriSchemeHttps*/ "https" && transportBindingElement is
HttpTransportBindingElement
&& !(transportBindingElement is HttpsTransportBindingElement))
95
elements.Add(CreateHttpsFromHttp(transportBindingElement as
HttpTransportBindingElement
));
111
private static HttpsTransportBindingElement CreateHttpsFromHttp(
HttpTransportBindingElement
http)
159
HttpTransportBindingElement
httpTransport = GetHttpTransportBindingElement(policyContext);
172
private static
HttpTransportBindingElement
GetHttpTransportBindingElement(PolicyConversionContext policyContext)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeBindings.cs (1)
186
private static CustomBinding CreateGetBinding(
HttpTransportBindingElement
httpTransport)
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (3)
16
private
HttpTransportBindingElement
_httpTransport;
214
internal static bool GetSecurityModeFromTransport(
HttpTransportBindingElement
http, HttpTransportSecurity transportSecurity, out UnifiedSecurityMode mode)
279
internal virtual void InitializeFrom(
HttpTransportBindingElement
transport, MessageEncodingBindingElement encoding)
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpTransportSecurity.cs (8)
76
private void ConfigureAuthentication(
HttpTransportBindingElement
http)
82
private static void ConfigureAuthentication(
HttpTransportBindingElement
http, HttpTransportSecurity transportSecurity)
88
private void DisableAuthentication(
HttpTransportBindingElement
http)
97
private static bool IsDisabledAuthentication(
HttpTransportBindingElement
http)
115
internal void ConfigureTransportAuthentication(
HttpTransportBindingElement
http)
124
internal static bool IsConfiguredTransportAuthentication(
HttpTransportBindingElement
http, HttpTransportSecurity transportSecurity)
132
internal void DisableTransportAuthentication(
HttpTransportBindingElement
http)
137
internal static bool IsDisabledTransportAuthentication(
HttpTransportBindingElement
http)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (4)
180
HttpTransportBindingElement
transport = null;
195
transport = element as
HttpTransportBindingElement
;
283
private void InitializeFrom(
HttpTransportBindingElement
transport, MessageEncodingBindingElement encoding, ReliableSessionBindingElement session)
310
private bool IsBindingElementsMatch(
HttpTransportBindingElement
transport, MessageEncodingBindingElement encoding, ReliableSessionBindingElement session)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSFederationHttpBinding.cs (1)
164
else if (transport is
HttpTransportBindingElement
)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (3)
174
else if (transport is
HttpTransportBindingElement
)
187
HttpTransportBindingElement
httpTransportBindingElement = transport as
HttpTransportBindingElement
;
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (6)
26
private
HttpTransportBindingElement
_httpTransport;
146
internal
HttpTransportBindingElement
HttpTransport
187
private void InitializeFrom(
HttpTransportBindingElement
transport, MessageEncodingBindingElement encoding, TransactionFlowBindingElement txFlow, ReliableSessionBindingElement session)
223
private bool IsBindingElementsMatch(
HttpTransportBindingElement
transport, MessageEncodingBindingElement encoding, TransactionFlowBindingElement txFlow, ReliableSessionBindingElement session)
298
HttpTransportBindingElement
transport = null;
305
transport = element as
HttpTransportBindingElement
;