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