38 references to GetAttribute
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (4)
PDB\CSharpPDBTestBase.cs (4)
58if (startRow.ToString() == item.GetAttribute("startLine") && 59startColumn.ToString() == item.GetAttribute("startColumn") && 60endRow.ToString() == item.GetAttribute("endLine") && 61endColumn.ToString() == item.GetAttribute("endColumn"))
PresentationFramework (6)
MS\Internal\Globalization\BamlTreeMap.cs (3)
587string locAttribute = element.GetAttribute(LocComments.LocLocalizabilityAttribute); 590locAttribute = element.GetAttribute(LocComments.LocCommentsAttribute); 646&& element.GetAttribute(LocComments.LocCommentIDAttribute) == uid)
MS\Internal\Globalization\BamlTreeUpdater.cs (1)
498tagUid = child.GetAttribute(XamlReaderHelper.DefinitionUid);
MS\Internal\IO\Packaging\XmlGlyphRunInfo.cs (2)
168string languageString = currentNode.GetAttribute(_xmlLangAttribute); 223_unicodeString = _glyphsNode.GetAttribute(_unicodeStringAttribute);
System.Data.Common (21)
System\Data\XDRSchema.cs (14)
36_schemaName = schemaRoot.GetAttribute(Keywords.NAME); 83strType = node.GetAttribute(Keywords.TYPE); 102if (vn is XmlElement && ((XmlElement)vn).GetAttribute(Keywords.NAME) == strType) 135string value = node.GetAttribute(Keywords.CONTENT); 191string occurs = node.GetAttribute(Keywords.MINOCCURS); 199occurs = node.GetAttribute(Keywords.MAXOCCURS); 326instanceName = node.GetAttribute(Keywords.NAME); 334instanceName = node.GetAttribute(Keywords.TYPE); 361string strRef = node.GetAttribute(Keywords.REF); 397strType = node.GetAttribute(Keywords.TYPE); 448strDefault = node.GetAttribute(Keywords.DEFAULT); 478string targetNamespace = node.GetAttribute(Keywords.TARGETNAMESPACE); 496string occurs = elNode.GetAttribute(Keywords.MINOCCURS); 504occurs = elNode.GetAttribute(Keywords.MAXOCCURS);
System\Data\xmlsaver.cs (3)
1214if (n is XmlElement e && e.GetAttribute(Keywords.NAME) == name) 1570if (FindTypeNode(schNode, el.GetAttribute(Keywords.NAME)) == null) 1591if (child.GetAttribute(Keywords.NAME) == strType)
System\Data\XMLSchema.cs (1)
442strName = XmlConvert.DecodeName(node.GetAttribute(Keywords.NAME));
System\Xml\XmlDataDocument.cs (2)
2475if (value.Length == 0 && (((xsi_attrVal = rowElement.GetAttribute(XSI_NIL)) == "1") || xsi_attrVal == "true")) 2511if (value.Length == 0 && (((xsi_attrVal = e.GetAttribute(XSI_NIL)) == "1") || xsi_attrVal == "true"))
System\Xml\XPathNodePointer.cs (1)
420return curBoundElem.GetAttribute("xml:lang");
System.Private.Xml (2)
System\Xml\Dom\XmlNode.cs (2)
1353switch (elem.GetAttribute("xml:space").AsSpan().Trim(XmlConvert.WhitespaceChars)) 1384return elem.GetAttribute("xml:lang");
System.Security.Cryptography.Xml (5)
System\Security\Cryptography\Xml\Utils.cs (2)
39if (element.HasAttribute(name) && element.GetAttribute(name) == value) return true; 61string? s = (element.HasAttribute(localName) ? element.GetAttribute(localName) : null);
System\Security\Cryptography\Xml\XmlDecryptionTransform.cs (3)
43if (inputElement.GetAttribute("Id") == idValue || inputElement.GetAttribute("id") == idValue || 44inputElement.GetAttribute("ID") == idValue)