2 writes to _keyType
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (2)
51
_keyType
= other._keyType;
173
_keyType
= value;
11 references to _keyType
dotnet-svcutil-lib (11)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (11)
51
_keyType = other.
_keyType
;
168
return
_keyType
;
320
result.Add(driver.CreateKeyTypeElement(
_keyType
));
386
if (this.
_keyType
== SecurityKeyType.BearerKey)
393
string signWithAlgorithm = (this.
_keyType
== SecurityKeyType.SymmetricKey) ? algorithmSuite.DefaultSymmetricSignatureAlgorithm : algorithmSuite.DefaultAsymmetricSignatureAlgorithm;
459
if ((this.
_keyType
== SecurityKeyType.SymmetricKey && algorithm != algorithmSuite.DefaultSymmetricSignatureAlgorithm)
460
|| (this.
_keyType
== SecurityKeyType.AsymmetricKey && algorithm != algorithmSuite.DefaultAsymmetricSignatureAlgorithm))
468
if ((this.
_keyType
== SecurityKeyType.SymmetricKey && algorithm != algorithmSuite.DefaultEncryptionAlgorithm)
469
|| (this.
_keyType
== SecurityKeyType.AsymmetricKey && algorithm != algorithmSuite.DefaultAsymmetricKeyWrapAlgorithm))
504
if (this.
_keyType
== SecurityKeyType.BearerKey)
596
sb.AppendLine(String.Format(CultureInfo.InvariantCulture, "KeyType: {0}",
_keyType
.ToString()));