1 override of GetElementsByTagName
System.Data.Common (1)
System\Xml\XmlDataDocument.cs (1)
3027public override XmlNodeList GetElementsByTagName(string name)
10 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"))
Microsoft.DotNet.Open.Api.Tools.Tests (3)
OpenApiAddFileTests.cs (2)
97var openApiRefs = projXml.GetElementsByTagName(Commands.BaseCommand.OpenApiReference); 122var openApiRefs = projXml.GetElementsByTagName(Commands.BaseCommand.OpenApiReference);
OpenApiAddProjectTests.cs (1)
78var openApiRefs = projXml.GetElementsByTagName(Commands.BaseCommand.OpenApiProjectReference);
PresentationBuildTasks (1)
Microsoft\Build\Tasks\Windows\UpdateManifestForBrowserApplication.cs (1)
98XmlNodeList 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);