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