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