12 instantiations of SecurityCapabilities
System.ServiceModel (12)
System\ServiceModel\Channels\AsymmetricSecurityBindingElement.cs (1)
162
return new
SecurityCapabilities
(supportsClientAuthentication, supportsServerAuthentication, supportsClientWindowsIdentity,
System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
145
return (T)(object)(new
SecurityCapabilities
(lowerCapabilities.SupportsClientAuthentication,
System\ServiceModel\Channels\HttpsTransportBindingElement.cs (1)
151
return (T)(object)new
SecurityCapabilities
(this.GetSupportsClientAuthenticationImpl(effectiveAuthenticationSchemes),
System\ServiceModel\Channels\HttpTransportBindingElement.cs (1)
498
return (T)(object)new
SecurityCapabilities
(this.GetSupportsClientAuthenticationImpl(effectiveAuthenticationSchemes),
System\ServiceModel\Channels\InternalDuplexBindingElement.cs (1)
123
return (T)(object)(new
SecurityCapabilities
(lowerCapabilities.SupportsClientAuthentication,
System\ServiceModel\Channels\PeerTransportBindingElement.cs (1)
290
return (T)(object)new
SecurityCapabilities
(Security.SupportsAuthentication, Security.SupportsAuthentication,
System\ServiceModel\Channels\SecurityBindingElement.cs (1)
912
return new
SecurityCapabilities
(supportsClientAuth, supportsServerAuth, supportsClientWindowsIdentity, requestProtectionLevel, responseProtectionLevel);
System\ServiceModel\Channels\SecurityCapabilities.cs (1)
35
get { return new
SecurityCapabilities
(false, false, false, ProtectionLevel.None, ProtectionLevel.None); }
System\ServiceModel\Channels\SslStreamSecurityBindingElement.cs (1)
146
return (T)(object)new
SecurityCapabilities
(this.RequireClientCertificate, true, this.RequireClientCertificate,
System\ServiceModel\Channels\SymmetricSecurityBindingElement.cs (1)
107
return new
SecurityCapabilities
(supportsClientAuthentication, supportsServerAuthentication, supportsClientWindowsIdentity,
System\ServiceModel\Channels\TransportSecurityBindingElement.cs (1)
36
return new
SecurityCapabilities
(supportsClientAuthentication, false, supportsClientWindowsIdentity,
System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (1)
120
return (T)(object)new
SecurityCapabilities
(true, true, true, protectionLevel, protectionLevel);
4 references to SecurityCapabilities
System.ServiceModel (4)
System\ServiceModel\Channels\Binding.cs (1)
192
if (!
SecurityCapabilities
.IsEqual(bindingSecurityCapabilities, runtimeSecurityCapabilities))
System\ServiceModel\Channels\SecurityCapabilities.cs (3)
33
static
SecurityCapabilities
None
42
capabilities1 =
SecurityCapabilities
.None;
47
capabilities2 =
SecurityCapabilities
.None;