1 implementation of SupportsClientAuthentication
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityCapabilities.cs (1)
29public bool SupportsClientAuthentication { get { return supportsClientAuth; } }
5 references to SupportsClientAuthentication
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
101return (T)(object)(new SecurityCapabilities(lowerCapabilities.SupportsClientAuthentication,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (1)
493bool supportsClientAuth = thisSecurityCapability.SupportsClientAuthentication;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityCapabilities.cs (2)
60if (capabilities1.SupportsClientAuthentication != capabilities2.SupportsClientAuthentication)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\SecureConversationSecurityTokenParameters.cs (1)
135return this.BootstrapSecurityCapabilities == null ? false : this.BootstrapSecurityCapabilities.SupportsClientAuthentication;