1 implementation of SupportsClientAuthentication
System.ServiceModel (1)
System\ServiceModel\Channels\SecurityCapabilities.cs (1)
29public bool SupportsClientAuthentication { get { return supportsClientAuth; } }
9 references to SupportsClientAuthentication
System.ServiceModel (7)
System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
145return (T)(object)(new SecurityCapabilities(lowerCapabilities.SupportsClientAuthentication,
System\ServiceModel\Channels\InternalDuplexBindingElement.cs (1)
123return (T)(object)(new SecurityCapabilities(lowerCapabilities.SupportsClientAuthentication,
System\ServiceModel\Channels\OneWayChannelFactory.cs (1)
372if (innerSecurityCapabilities != null && innerSecurityCapabilities.SupportsClientAuthentication)
System\ServiceModel\Channels\SecurityBindingElement.cs (1)
907bool supportsClientAuth = thisSecurityCapability.SupportsClientAuthentication;
System\ServiceModel\Channels\SecurityCapabilities.cs (2)
60if (capabilities1.SupportsClientAuthentication != capabilities2.SupportsClientAuthentication)
System\ServiceModel\Security\Tokens\SecureConversationSecurityTokenParameters.cs (1)
163return this.BootstrapSecurityCapabilities == null ? false : this.BootstrapSecurityCapabilities.SupportsClientAuthentication;
System.ServiceModel.Web (1)
System\ServiceModel\Description\WebHttpBehavior.cs (1)
153if (securityCapabilities.SupportsClientAuthentication)
System.WorkflowServices (1)
System\Workflow\Runtime\Hosting\ChannelManager.cs (1)
302this.supportsClientAuthentication = securityCapabilities.SupportsClientAuthentication;