8 overrides of SupportsClientAuthentication
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (1)
223internal protected override bool SupportsClientAuthentication { get { return true; } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\KerberosSecurityTokenParameters.cs (1)
28internal protected override bool SupportsClientAuthentication { get { return true; } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\RsaSecurityTokenParameters.cs (1)
29internal protected override bool SupportsClientAuthentication { get { return true; } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\SecureConversationSecurityTokenParameters.cs (1)
131internal protected override bool SupportsClientAuthentication
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\SslSecurityTokenParameters.cs (1)
97internal protected override bool SupportsClientAuthentication { get { return _requireClientCertificate; } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\SspiSecurityTokenParameters.cs (1)
77internal protected override bool SupportsClientAuthentication { get { return true; } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\UserNameSecurityTokenParameters.cs (1)
22internal protected override bool SupportsClientAuthentication { get { return true; } }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\X509SecurityTokenParameters.cs (1)
68internal protected override bool SupportsClientAuthentication { get { return true; } }
4 references to SupportsClientAuthentication
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (1)
310if (p.SupportsClientAuthentication)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElementImporter.cs (1)
159supportsClientAuthentication = supportsClientAuthentication || InitiatorTokenParameters.SupportsClientAuthentication;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SymmetricSecurityBindingElement.cs (2)
95supportsClientAuthentication = supportsClientAuthentication || ProtectionTokenParameters.SupportsClientAuthentication; 100supportsServerAuthentication = ProtectionTokenParameters.SupportsClientAuthentication;