11 instantiations of HttpsTransportBindingElement
System.ServiceModel (9)
System\ServiceModel\Channels\HttpsTransportBindingElement.cs (2)
63return new HttpsTransportBindingElement(this); 137return new HttpsTransportBindingElement(elementToBeCloned);
System\ServiceModel\Channels\SecurityBindingElement.cs (1)
2232transportTokenAssertionProvider = new HttpsTransportBindingElement();
System\ServiceModel\Channels\TransportBindingElementImporter.cs (2)
115if (http == null) return new HttpsTransportBindingElement(); 188HttpsTransportBindingElement httpsBinding = new HttpsTransportBindingElement();
System\ServiceModel\Configuration\HttpsTransportElement.cs (1)
39return new HttpsTransportBindingElement();
System\ServiceModel\Description\MetadataExchangeBindings.cs (1)
183return CreateGetBinding(new HttpsTransportBindingElement());
System\ServiceModel\HttpBindingBase.cs (1)
27this.httpsTransport = new HttpsTransportBindingElement();
System\ServiceModel\WSHttpBindingBase.cs (1)
212httpsTransport = new HttpsTransportBindingElement();
System.ServiceModel.Web (2)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
281transportBindingElement = new HttpsTransportBindingElement();
System\ServiceModel\WebHttpBinding.cs (1)
269httpsTransportBindingElement = new HttpsTransportBindingElement();
64 references to HttpsTransportBindingElement
System.ServiceModel (62)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (3)
221if (bindingElement is HttpsTransportBindingElement) 223HttpsTransportBindingElement https = (HttpsTransportBindingElement)bindingElement;
System\ServiceModel\BasicHttpBinding.cs (2)
200HttpsTransportBindingElement httpsTransport = transport as HttpsTransportBindingElement;
System\ServiceModel\BasicHttpSecurity.cs (2)
62internal void EnableTransportSecurity(HttpsTransportBindingElement https) 74internal static void EnableTransportSecurity(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity)
System\ServiceModel\BasicHttpsSecurity.cs (2)
130internal static void EnableTransportSecurity(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity) 140internal void EnableTransportSecurity(HttpsTransportBindingElement https)
System\ServiceModel\Channels\HttpsChannelFactory.cs (1)
28internal HttpsChannelFactory(HttpsTransportBindingElement httpsBindingElement, BindingContext context)
System\ServiceModel\Channels\HttpsChannelListener.cs (1)
33public HttpsChannelListener(HttpsTransportBindingElement httpsBindingElement, BindingContext context)
System\ServiceModel\Channels\HttpsTransportBindingElement.cs (2)
31protected HttpsTransportBindingElement(HttpsTransportBindingElement elementToBeCloned) 135internal static HttpsTransportBindingElement CreateFromHttpBindingElement(HttpTransportBindingElement elementToBeCloned)
System\ServiceModel\Channels\SecurityBindingElement.cs (4)
2157HttpsTransportBindingElement httpsBinding = transportTokenAssertionProvider as HttpsTransportBindingElement; 2249if (transportTokenAssertionProvider is HttpsTransportBindingElement) 2251transportTokenAssertion = sp.CreateWsspHttpsTokenAssertion(exporter, (HttpsTransportBindingElement)transportTokenAssertionProvider);
System\ServiceModel\Channels\TransportBindingElementImporter.cs (5)
93if (address.Uri.Scheme == Uri.UriSchemeHttps && transportBindingElement is HttpTransportBindingElement && !(transportBindingElement is HttpsTransportBindingElement)) 113static HttpsTransportBindingElement CreateHttpsFromHttp(HttpTransportBindingElement http) 117HttpsTransportBindingElement https = HttpsTransportBindingElement.CreateFromHttpBindingElement(http); 188HttpsTransportBindingElement httpsBinding = new HttpsTransportBindingElement();
System\ServiceModel\Configuration\HttpsTransportElement.cs (5)
19HttpsTransportBindingElement binding = (HttpsTransportBindingElement)bindingElement; 25get { return typeof(HttpsTransportBindingElement); } 45HttpsTransportBindingElement binding = (HttpsTransportBindingElement)bindingElement;
System\ServiceModel\Description\ServiceDebugBehavior.cs (2)
124HttpsTransportBindingElement httpsTransportBindingElement = customBinding.Elements.Find<HttpsTransportBindingElement>();
System\ServiceModel\Description\ServiceMetadataBehavior.cs (2)
129HttpsTransportBindingElement httpsTransportBindingElement = customBinding.Elements.Find<HttpsTransportBindingElement>();
System\ServiceModel\HttpBindingBase.cs (3)
20HttpsTransportBindingElement httpsTransport; 279if (http is HttpsTransportBindingElement) 282BasicHttpSecurity.EnableTransportSecurity((HttpsTransportBindingElement)http, transportSecurity);
System\ServiceModel\HttpTransportSecurity.cs (3)
89internal void ConfigureTransportProtectionOnly(HttpsTransportBindingElement https) 126internal void ConfigureTransportProtectionAndAuthentication(HttpsTransportBindingElement https) 132internal static void ConfigureTransportProtectionAndAuthentication(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity)
System\ServiceModel\NetHttpBinding.cs (2)
225HttpsTransportBindingElement httpsTransport = transport as HttpsTransportBindingElement;
System\ServiceModel\Security\WSSecurityPolicy.cs (2)
2549public abstract XmlElement CreateWsspHttpsTokenAssertion(MetadataExporter exporter, HttpsTransportBindingElement httpsBinding); 2551public abstract bool TryImportWsspHttpsTokenAssertion(MetadataImporter importer, ICollection<XmlElement> assertions, HttpsTransportBindingElement httpsBinding);
System\ServiceModel\Security\WSSecurityPolicy11.cs (2)
64public override XmlElement CreateWsspHttpsTokenAssertion(MetadataExporter exporter, HttpsTransportBindingElement httpsBinding) 71public override bool TryImportWsspHttpsTokenAssertion(MetadataImporter importer, ICollection<XmlElement> assertions, HttpsTransportBindingElement httpsBinding)
System\ServiceModel\Security\WSSecurityPolicy12.cs (2)
51public override XmlElement CreateWsspHttpsTokenAssertion(MetadataExporter exporter, HttpsTransportBindingElement httpsBinding) 79public override bool TryImportWsspHttpsTokenAssertion(MetadataImporter importer, ICollection<XmlElement> assertions, HttpsTransportBindingElement httpsBinding)
System\ServiceModel\WS2007FederationHttpBinding.cs (2)
98HttpsTransportBindingElement httpsBinding = transport as HttpsTransportBindingElement;
System\ServiceModel\WS2007HttpBinding.cs (2)
99HttpsTransportBindingElement httpsBinding = transport as HttpsTransportBindingElement;
System\ServiceModel\WSFederationHttpBinding.cs (3)
135HttpsTransportBindingElement httpsBinding = transport as HttpsTransportBindingElement; 178if (transport is HttpsTransportBindingElement)
System\ServiceModel\WSHttpBinding.cs (4)
134HttpsTransportBindingElement httpsBinding = transport as HttpsTransportBindingElement; 188if (transport is HttpsTransportBindingElement) 191WSHttpSecurity.ApplyTransportSecurity((HttpsTransportBindingElement)transport, transportSecurity);
System\ServiceModel\WSHttpBindingBase.cs (4)
28HttpsTransportBindingElement httpsTransport; 187internal HttpsTransportBindingElement HttpsTransport 371HttpsTransportBindingElement httpsTransport = transport as HttpsTransportBindingElement;
System\ServiceModel\WSHttpSecurity.cs (2)
76internal void ApplyTransportSecurity(HttpsTransportBindingElement https) 88internal static void ApplyTransportSecurity(HttpsTransportBindingElement transport, HttpTransportSecurity transportSecurity)
System.ServiceModel.Web (2)
System\ServiceModel\WebHttpBinding.cs (1)
17HttpsTransportBindingElement httpsTransportBindingElement;
System\ServiceModel\WebHttpSecurity.cs (1)
60internal void EnableTransportSecurity(HttpsTransportBindingElement https)