2 writes to keyType
System.ServiceModel (2)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (2)
51
this.
keyType
= other.keyType;
173
this.
keyType
= value;
11 references to keyType
System.ServiceModel (11)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (11)
51
this.keyType = other.
keyType
;
168
return this.
keyType
;
329
result.Add(driver.CreateKeyTypeElement(this.
keyType
));
683
if (this.
keyType
== SecurityKeyType.BearerKey)
690
string signWithAlgorithm = (this.
keyType
== SecurityKeyType.SymmetricKey) ? algorithmSuite.DefaultSymmetricSignatureAlgorithm : algorithmSuite.DefaultAsymmetricSignatureAlgorithm;
756
if ((this.
keyType
== SecurityKeyType.SymmetricKey && algorithm != algorithmSuite.DefaultSymmetricSignatureAlgorithm)
757
|| (this.
keyType
== SecurityKeyType.AsymmetricKey && algorithm != algorithmSuite.DefaultAsymmetricSignatureAlgorithm))
765
if ((this.
keyType
== SecurityKeyType.SymmetricKey && algorithm != algorithmSuite.DefaultEncryptionAlgorithm)
766
|| (this.
keyType
== SecurityKeyType.AsymmetricKey && algorithm != algorithmSuite.DefaultAsymmetricKeyWrapAlgorithm))
801
if (this.
keyType
== SecurityKeyType.BearerKey)
921
sb.AppendLine(String.Format(CultureInfo.InvariantCulture, "KeyType: {0}", this.
keyType
.ToString()));