Base:
property
Scheme
System.ServiceModel.Channels.Binding.Scheme
13 references to Scheme
System.ServiceModel (13)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
85
binding.SetProperty(AdministrationStrings.Scheme, endpoint.Binding.
Scheme
);
System\ServiceModel\Channels\ContextBindingElement.cs (3)
330
&& !"http".Equals(context.Binding.
Scheme
, StringComparison.OrdinalIgnoreCase)
331
&& !"https".Equals(context.Binding.
Scheme
, StringComparison.OrdinalIgnoreCase))
337
context.Binding.
Scheme
, context.Binding.Namespace, context.Binding.Name)));
System\ServiceModel\Channels\HttpCookieContainerBindingElement.cs (2)
41
if (!context.Binding.
Scheme
.Equals("http", StringComparison.OrdinalIgnoreCase) &&
42
!context.Binding.
Scheme
.Equals("https", StringComparison.OrdinalIgnoreCase))
System\ServiceModel\Channels\HttpsChannelListener.cs (1)
48
TransportSecurityHelpers.GetCertificateTokenAuthenticator(tokenManager, context.Binding.
Scheme
,
System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (4)
71
return new SslStreamSecurityUpgradeProvider(context.Binding, tokenManager, bindingElement.RequireClientCertificate, context.Binding.
Scheme
, bindingElement.IdentityVerifier, bindingElement.SslProtocols);
92
serverCertRequirement.TransportScheme = context.Binding.
Scheme
;
102
TransportSecurityHelpers.GetCertificateTokenAuthenticator(tokenManager, context.Binding.
Scheme
, listenUri);
105
certificateAuthenticator, context.Binding.
Scheme
, bindingElement.IdentityVerifier, bindingElement.SslProtocols);
System\ServiceModel\Channels\WindowsStreamSecurityUpgradeProvider.cs (1)
40
this.scheme = context.Binding.
Scheme
;
System\ServiceModel\Description\DispatcherBuilder.cs (1)
252
GetBaseAndRelativeAddresses(serviceHost, listenUri, binding.
Scheme
, out listenUriBaseAddress, out listenUriRelativeAddress);