10 references to 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);