2 writes to keyType
System.ServiceModel (2)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (2)
684this.isKeyTypePresentInRstProperties = TryGetKeyType(out this.keyType); 687this.keyType = SecurityKeyType.SymmetricKey;
14 references to keyType
System.ServiceModel (14)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (14)
690if (!this.isKeySizePresentInRstProperties && this.keyType != SecurityKeyType.BearerKey) 692this.keySize = (this.keyType == SecurityKeyType.SymmetricKey) ? this.SecurityAlgorithmSuite.DefaultSymmetricKeyLength : this.defaultPublicKeySize; 839if ((this.keyType == SecurityKeyType.SymmetricKey) || (this.keyType == SecurityKeyType.BearerKey)) 853else if (this.keyType == SecurityKeyType.AsymmetricKey) 902XmlElement keyTypeElement = this.StandardsManager.TrustDriver.CreateKeyTypeElement(this.keyType); 905if (this.keyType == SecurityKeyType.SymmetricKey) 910else if (this.keyType == SecurityKeyType.AsymmetricKey) 924if (this.keyType == SecurityKeyType.SymmetricKey && this.KeyEntropyMode == SecurityKeyEntropyMode.CombinedEntropy) 989if ((this.keyType == SecurityKeyType.SymmetricKey) || 990(this.keyType == SecurityKeyType.BearerKey)) 994serviceToken = rstr.GetIssuedToken(null, null, this.KeyEntropyMode, keyEntropy, null, authorizationPolicies, this.keySize, this.keyType == SecurityKeyType.BearerKey); 996else if (this.keyType == SecurityKeyType.AsymmetricKey) 1089if (this.keyType == SecurityKeyType.BearerKey)