12 instantiations of HttpsTransportBindingElement
Binding.Custom.IntegrationTests (1)
CustomBindingTests.4.1.0.cs (1)
72binding = new CustomBinding(new TextMessageEncodingBindingElement(), new HttpsTransportBindingElement());
Security.TransportSecurity.IntegrationTests (7)
Https\HttpsTests.4.1.0.cs (7)
82CustomBinding binding = new CustomBinding(new TextMessageEncodingBindingElement(MessageVersion.Soap11, Encoding.UTF8), new HttpsTransportBindingElement()); 121CustomBinding binding = new CustomBinding(new TextMessageEncodingBindingElement(), new HttpsTransportBindingElement()); 160CustomBinding binding = new CustomBinding(new TextMessageEncodingBindingElement(MessageVersion.Soap11, Encoding.UTF8), new HttpsTransportBindingElement()); 199CustomBinding binding = new CustomBinding(new TextMessageEncodingBindingElement(MessageVersion.Soap12WSAddressing10, Encoding.UTF8), new HttpsTransportBindingElement()); 240CustomBinding binding = new CustomBinding(new TextMessageEncodingBindingElement(MessageVersion.Soap11, Encoding.UTF8), new HttpsTransportBindingElement()); 286CustomBinding binding = new CustomBinding(new TextMessageEncodingBindingElement(MessageVersion.Soap11, Encoding.UTF8), new HttpsTransportBindingElement()); 327CustomBinding binding = new CustomBinding(new TextMessageEncodingBindingElement(MessageVersion.Soap11, Encoding.UTF8), new HttpsTransportBindingElement());
System.ServiceModel.Http (4)
System\ServiceModel\Channels\HttpsTransportBindingElement.cs (2)
45return new HttpsTransportBindingElement(this); 94return new HttpsTransportBindingElement(elementToBeCloned);
System\ServiceModel\HttpBindingBase.cs (1)
23_httpsTransport = new HttpsTransportBindingElement();
System\ServiceModel\WSHttpBindingBase.cs (1)
159HttpsTransport = new HttpsTransportBindingElement();
18 references to HttpsTransportBindingElement
Security.TransportSecurity.IntegrationTests (2)
Https\ClientCredentialTypeTests.4.1.0.cs (2)
248var htbe = binding.Elements.Find<HttpsTransportBindingElement>();
System.ServiceModel.Http (16)
System\ServiceModel\BasicHttpSecurity.cs (2)
66internal void EnableTransportSecurity(HttpsTransportBindingElement https) 78internal static void EnableTransportSecurity(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity)
System\ServiceModel\BasicHttpsSecurity.cs (2)
111internal static void EnableTransportSecurity(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity) 121internal void EnableTransportSecurity(HttpsTransportBindingElement https)
System\ServiceModel\Channels\HttpsChannelFactory.cs (1)
25internal HttpsChannelFactory(HttpsTransportBindingElement httpsBindingElement, BindingContext context)
System\ServiceModel\Channels\HttpsTransportBindingElement.cs (2)
23protected HttpsTransportBindingElement(HttpsTransportBindingElement elementToBeCloned) 92internal static HttpsTransportBindingElement CreateFromHttpBindingElement(HttpTransportBindingElement elementToBeCloned)
System\ServiceModel\HttpBindingBase.cs (3)
18private HttpsTransportBindingElement _httpsTransport; 245if (http is HttpsTransportBindingElement) 248BasicHttpSecurity.EnableTransportSecurity((HttpsTransportBindingElement)http, transportSecurity);
System\ServiceModel\HttpTransportSecurity.cs (3)
84internal void ConfigureTransportProtectionOnly(HttpsTransportBindingElement https) 120internal void ConfigureTransportProtectionAndAuthentication(HttpsTransportBindingElement https) 126public static void ConfigureTransportProtectionAndAuthentication(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity)
System\ServiceModel\WSHttpBindingBase.cs (1)
154internal HttpsTransportBindingElement HttpsTransport { get; private set; }
System\ServiceModel\WSHttpSecurity.cs (2)
67internal void ApplyTransportSecurity(HttpsTransportBindingElement https) 79internal static void ApplyTransportSecurity(HttpsTransportBindingElement transport, HttpTransportSecurity transportSecurity)