8 instantiations of HttpsTransportBindingElement
dotnet-svcutil-lib (8)
CodeDomFixup\MethodCreationHelper.cs (1)
1359HttpTransportBindingElement defaultBindingElement = isHttps ? new HttpsTransportBindingElement() : new HttpTransportBindingElement();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsTransportBindingElement.cs (2)
58return new HttpsTransportBindingElement(this); 111return new HttpsTransportBindingElement(elementToBeCloned);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (2)
113if (http == null) return new HttpsTransportBindingElement(); 180HttpsTransportBindingElement httpsBinding = new HttpsTransportBindingElement();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeBindings.cs (1)
183return CreateGetBinding(new HttpsTransportBindingElement());
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (1)
24_httpsTransport = new HttpsTransportBindingElement();
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (1)
176_httpsTransport = new HttpsTransportBindingElement();
49 references to HttpsTransportBindingElement
dotnet-svcutil-lib (49)
CodeDomFixup\EndpointSelector.cs (2)
127if (!(bindingElement is HttpTransportBindingElement || bindingElement is HttpsTransportBindingElement || bindingElement is TcpTransportBindingElement || bindingElement is NamedPipeTransportBindingElement)) 130typeof(HttpTransportBindingElement).FullName, typeof(HttpsTransportBindingElement).FullName, typeof(TcpTransportBindingElement).FullName));
CodeDomFixup\MethodCreationHelper.cs (2)
1357bool isHttps = bindingElement is HttpsTransportBindingElement; 1358Type bindingElementType = isHttps ? typeof(HttpsTransportBindingElement) : typeof(HttpTransportBindingElement);
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpBinding.cs (2)
168HttpsTransportBindingElement httpsTransport = transport as HttpsTransportBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpSecurity.cs (2)
62internal void EnableTransportSecurity(HttpsTransportBindingElement https) 74internal static void EnableTransportSecurity(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity)
FrameworkFork\System.ServiceModel\System\ServiceModel\BasicHttpsSecurity.cs (2)
100internal static void EnableTransportSecurity(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity) 110internal void EnableTransportSecurity(HttpsTransportBindingElement https)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsChannelFactory.cs (1)
25internal HttpsChannelFactory(HttpsTransportBindingElement httpsBindingElement, BindingContext context)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsTransportBindingElement.cs (2)
26protected HttpsTransportBindingElement(HttpsTransportBindingElement elementToBeCloned) 109internal static HttpsTransportBindingElement CreateFromHttpBindingElement(HttpTransportBindingElement elementToBeCloned)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (5)
91if (address.Uri.Scheme == /*TODO: Uri.UriSchemeHttps*/ "https" && transportBindingElement is HttpTransportBindingElement && !(transportBindingElement is HttpsTransportBindingElement)) 111private static HttpsTransportBindingElement CreateHttpsFromHttp(HttpTransportBindingElement http) 115HttpsTransportBindingElement https = HttpsTransportBindingElement.CreateFromHttpBindingElement(http); 180HttpsTransportBindingElement httpsBinding = new HttpsTransportBindingElement();
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (3)
17private HttpsTransportBindingElement _httpsTransport; 224if (http is HttpsTransportBindingElement) 227BasicHttpSecurity.EnableTransportSecurity((HttpsTransportBindingElement)http, transportSecurity);
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpTransportSecurity.cs (3)
70internal void ConfigureTransportProtectionOnly(HttpsTransportBindingElement https) 102internal void ConfigureTransportProtectionAndAuthentication(HttpsTransportBindingElement https) 108internal static void ConfigureTransportProtectionAndAuthentication(HttpsTransportBindingElement https, HttpTransportSecurity transportSecurity)
FrameworkFork\System.ServiceModel\System\ServiceModel\NetHttpBinding.cs (2)
212HttpsTransportBindingElement httpsTransport = transport as HttpsTransportBindingElement;
FrameworkFork\System.ServiceModel\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);
FrameworkFork\System.ServiceModel\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)
FrameworkFork\System.ServiceModel\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)
FrameworkFork\System.ServiceModel\System\ServiceModel\WS2007FederationHttpBinding.cs (2)
80HttpsTransportBindingElement httpsBinding = transport as HttpsTransportBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\WS2007HttpBinding.cs (2)
79HttpsTransportBindingElement httpsBinding = transport as HttpsTransportBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\WSFederationHttpBinding.cs (3)
117HttpsTransportBindingElement httpsBinding = transport as HttpsTransportBindingElement; 160if (transport is HttpsTransportBindingElement)
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (4)
115HttpsTransportBindingElement httpsBinding = transport as HttpsTransportBindingElement; 169if (transport is HttpsTransportBindingElement) 172WSHttpSecurity.ApplyTransportSecurity((HttpsTransportBindingElement)transport, transportSecurity);
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBindingBase.cs (4)
27private HttpsTransportBindingElement _httpsTransport; 151internal HttpsTransportBindingElement HttpsTransport 329HttpsTransportBindingElement httpsTransport = transport as HttpsTransportBindingElement;
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpSecurity.cs (2)
77internal void ApplyTransportSecurity(HttpsTransportBindingElement https) 89internal static void ApplyTransportSecurity(HttpsTransportBindingElement transport, HttpTransportSecurity transportSecurity)