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