2 writes to algorithm
System.IdentityModel (2)
System\IdentityModel\ExclusiveCanonicalizationTransform.cs (2)
38this.algorithm = includeComments ? XD.SecurityAlgorithmDictionary.ExclusiveC14nWithComments.Value : XD.SecurityAlgorithmDictionary.ExclusiveC14n.Value; 170algorithm = reader.GetAttribute(dictionaryManager.XmlSignatureDictionary.Algorithm, null);
6 references to algorithm
System.IdentityModel (6)
System\IdentityModel\ExclusiveCanonicalizationTransform.cs (6)
45return algorithm; 171if (string.IsNullOrEmpty(algorithm)) 176if (algorithm == dictionaryManager.SecurityAlgorithmDictionary.ExclusiveC14nWithComments.Value) 183else if (algorithm == dictionaryManager.SecurityAlgorithmDictionary.ExclusiveC14n.Value) 189throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new CryptographicException(SR.GetString(SR.ID6005, algorithm))); 218writer.WriteAttributeString(dictionaryManager.XmlSignatureDictionary.Algorithm, null, algorithm);