11 overrides of SupportsClientAuthentication
System.ServiceModel (11)
System\ServiceModel\Security\SessionSymmetricMessageSecurityProtocolFactory.cs (1)
107
internal protected override bool
SupportsClientAuthentication
{ get { return false; } }
System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (1)
223
internal protected override bool
SupportsClientAuthentication
{ get { return true; } }
System\ServiceModel\Security\Tokens\KerberosSecurityTokenParameters.cs (1)
28
internal protected override bool
SupportsClientAuthentication
{ get { return true; } }
System\ServiceModel\Security\Tokens\RsaSecurityTokenParameters.cs (1)
34
internal protected override bool
SupportsClientAuthentication
{ get { return true; } }
System\ServiceModel\Security\Tokens\SecureConversationSecurityTokenParameters.cs (1)
159
internal protected override bool
SupportsClientAuthentication
System\ServiceModel\Security\Tokens\SecurityContextSecurityTokenParameters.cs (1)
27
internal protected override bool
SupportsClientAuthentication
{ get { return true; } }
System\ServiceModel\Security\Tokens\SslSecurityTokenParameters.cs (1)
97
internal protected override bool
SupportsClientAuthentication
{ get { return this.requireClientCertificate; } }
System\ServiceModel\Security\Tokens\SspiSecurityTokenParameters.cs (1)
77
internal protected override bool
SupportsClientAuthentication
{ get { return true; } }
System\ServiceModel\Security\Tokens\UserNameSecurityTokenParameters.cs (1)
28
internal protected override bool
SupportsClientAuthentication
{ get { return true; } }
System\ServiceModel\Security\Tokens\WrappedKeySecurityTokenParameters.cs (1)
28
internal protected override bool
SupportsClientAuthentication
{ get { return false; } }
System\ServiceModel\Security\Tokens\X509SecurityTokenParameters.cs (1)
68
internal protected override bool
SupportsClientAuthentication
{ get { return true; } }
4 references to SupportsClientAuthentication
System.ServiceModel (4)
System\ServiceModel\Channels\AsymmetricSecurityBindingElement.cs (1)
158
supportsClientAuthentication = supportsClientAuthentication || InitiatorTokenParameters.
SupportsClientAuthentication
;
System\ServiceModel\Channels\SecurityBindingElement.cs (1)
311
if (p.
SupportsClientAuthentication
)
System\ServiceModel\Channels\SymmetricSecurityBindingElement.cs (2)
94
supportsClientAuthentication = supportsClientAuthentication || ProtectionTokenParameters.
SupportsClientAuthentication
;
99
supportsServerAuthentication = ProtectionTokenParameters.
SupportsClientAuthentication
;