10 instantiations of SecurityCapabilities
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
101
return (T)(object)(new
SecurityCapabilities
(lowerCapabilities.SupportsClientAuthentication,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsTransportBindingElement.cs (1)
125
return (T)(object)new
SecurityCapabilities
(this.GetSupportsClientAuthenticationImpl(effectiveAuthenticationSchemes),
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpTransportBindingElement.cs (1)
411
return (T)(object)new
SecurityCapabilities
(this.GetSupportsClientAuthenticationImpl(effectiveAuthenticationSchemes),
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (1)
498
return new
SecurityCapabilities
(supportsClientAuth, supportsServerAuth, supportsClientWindowsIdentity, requestProtectionLevel, responseProtectionLevel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
163
return new
SecurityCapabilities
(supportsClientAuthentication, supportsServerAuthentication, supportsClientWindowsIdentity,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityCapabilities.cs (1)
35
get { return new
SecurityCapabilities
(false, false, false, ProtectionLevel.None, ProtectionLevel.None); }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityBindingElement.cs (1)
119
return (T)(object)new
SecurityCapabilities
(this.RequireClientCertificate, true, this.RequireClientCertificate,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SymmetricSecurityBindingElement.cs (1)
108
return new
SecurityCapabilities
(supportsClientAuthentication, supportsServerAuthentication, supportsClientWindowsIdentity,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportSecurityBindingElement.cs (1)
29
return new
SecurityCapabilities
(supportsClientAuthentication, false, supportsClientWindowsIdentity,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\WindowsStreamSecurityBindingElement.cs (1)
85
return (T)(object)new
SecurityCapabilities
(true, true, true, _protectionLevel, _protectionLevel);
4 references to SecurityCapabilities
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Binding.cs (1)
184
if (!
SecurityCapabilities
.IsEqual(bindingSecurityCapabilities, runtimeSecurityCapabilities))
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityCapabilities.cs (3)
33
public static
SecurityCapabilities
None
42
capabilities1 =
SecurityCapabilities
.None;
47
capabilities2 =
SecurityCapabilities
.None;