1 override of GetElementsByTagName
System.Data.Common (1)
System\Xml\XmlDataDocument.cs (1)
3027public override XmlNodeList GetElementsByTagName(string name)
7 references to GetElementsByTagName
Interop.FunctionalTests (1)
H2SpecCommands.cs (1)
276foreach (XmlNode node in xml.GetElementsByTagName("testsuite"))
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (1)
PDB\CSharpPDBTestBase.cs (1)
54foreach (XmlNode entry in doc.GetElementsByTagName("sequencePoints"))
PresentationBuildTasks (1)
Microsoft\Build\Tasks\Windows\UpdateManifestForBrowserApplication.cs (1)
113XmlNodeList entryPointList = manifestDocument.GetElementsByTagName(c_entryPoint);
System.Data.Common (1)
System\Xml\XmlDataDocument.cs (1)
3032XmlNodeList tempNodeList = base.GetElementsByTagName(name);
System.Windows.Forms (3)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (3)
54ParseControls(settings, tableLayoutSettingsXml.GetElementsByTagName("Control")); 55ParseStyles(settings, tableLayoutSettingsXml.GetElementsByTagName("Columns"), /*isColumn=*/true); 56ParseStyles(settings, tableLayoutSettingsXml.GetElementsByTagName("Rows"), /*isColumn=*/false);