34 references to GetAttribute
System.Security (34)
system\security\cryptography\xml\dataobject.cs (3)
134m_id = Utils.GetAttribute(value, "Id", SignedXml.XmlDsigNamespaceUrl); 135m_mimeType = Utils.GetAttribute(value, "MimeType", SignedXml.XmlDsigNamespaceUrl); 136m_encoding = Utils.GetAttribute(value, "Encoding", SignedXml.XmlDsigNamespaceUrl);
system\security\cryptography\xml\encrypteddata.cs (4)
33this.Id = Utils.GetAttribute(value, "Id", EncryptedXml.XmlEncNamespaceUrl); 34this.Type = Utils.GetAttribute(value, "Type", EncryptedXml.XmlEncNamespaceUrl); 35this.MimeType = Utils.GetAttribute(value, "MimeType", EncryptedXml.XmlEncNamespaceUrl); 36this.Encoding = Utils.GetAttribute(value, "Encoding", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\encryptedkey.cs (5)
76this.Id = Utils.GetAttribute(value, "Id", EncryptedXml.XmlEncNamespaceUrl); 77this.Type = Utils.GetAttribute(value, "Type", EncryptedXml.XmlEncNamespaceUrl); 78this.MimeType = Utils.GetAttribute(value, "MimeType", EncryptedXml.XmlEncNamespaceUrl); 79this.Encoding = Utils.GetAttribute(value, "Encoding", EncryptedXml.XmlEncNamespaceUrl); 80this.Recipient = Utils.GetAttribute(value, "Recipient", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\encryptedreference.cs (2)
111this.Uri = Utils.GetAttribute(value, "URI", EncryptedXml.XmlEncNamespaceUrl); 182string uri = Utils.GetAttribute(value, "URI", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\encryptedtype.cs (3)
191m_algorithm = Utils.GetAttribute(encryptionMethodElement, "Algorithm", EncryptedXml.XmlEncNamespaceUrl); 270m_id = Utils.GetAttribute(value, "Id", EncryptedXml.XmlEncNamespaceUrl); 271m_target = Utils.GetAttribute(value, "Target", EncryptedXml.XmlEncNamespaceUrl);
system\security\cryptography\xml\keyinfo.cs (3)
75m_id = Utils.GetAttribute(keyInfoElement, "Id", SignedXml.XmlDsigNamespaceUrl); 423m_uri = Utils.GetAttribute(value, "URI", SignedXml.XmlDsigNamespaceUrl); 424m_type = Utils.GetAttribute(value, "Type", SignedXml.XmlDsigNamespaceUrl);
system\security\cryptography\xml\reference.cs (6)
210m_id = Utils.GetAttribute(value, "Id", SignedXml.XmlDsigNamespaceUrl); 211m_uri = Utils.GetAttribute(value, "URI", SignedXml.XmlDsigNamespaceUrl); 212m_type = Utils.GetAttribute(value, "Type", SignedXml.XmlDsigNamespaceUrl); 243string algorithm = Utils.GetAttribute(transformElement, "Algorithm", SignedXml.XmlDsigNamespaceUrl); 280m_digestMethod = Utils.GetAttribute(digestMethodElement, "Algorithm", SignedXml.XmlDsigNamespaceUrl); 387&& (Utils.GetAttribute(tempElem, "Id", SignedXml.XmlDsigNamespaceUrl).Equals(idref))) {
system\security\cryptography\xml\signature.cs (2)
145m_id = Utils.GetAttribute(signatureElement, "Id", SignedXml.XmlDsigNamespaceUrl); 170m_signatureValueId = Utils.GetAttribute(signatureValueElement, "Id", SignedXml.XmlDsigNamespaceUrl);
system\security\cryptography\xml\signedinfo.cs (3)
201m_id = Utils.GetAttribute(signedInfoElement, "Id", SignedXml.XmlDsigNamespaceUrl); 211m_canonicalizationMethod = Utils.GetAttribute(canonicalizationMethodElement, "Algorithm", SignedXml.XmlDsigNamespaceUrl); 224m_signatureMethod = Utils.GetAttribute(signatureMethodElement, "Algorithm", SignedXml.XmlDsigNamespaceUrl);
system\security\cryptography\xml\transform.cs (3)
179string algorithm = Utils.GetAttribute(transformElement, "Algorithm", SignedXml.XmlDsigNamespaceUrl); 490this.InclusiveNamespacesPrefixList = Utils.GetAttribute(e, "PrefixList", SignedXml.XmlDsigNamespaceUrl); 1177string uri = Utils.GetAttribute(elem, "URI", XmlDecryptionTransformNamespaceUrl);