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