3 overrides of GetAttribute
System.Data.Common (1)
System\Xml\DataDocumentXPathNavigator.cs (1)
70public override string GetAttribute(string localName, string namespaceURI)
System.Private.Xml (2)
System\Xml\Dom\DocumentXPathNavigator.cs (1)
284public override string GetAttribute(string localName, string namespaceURI)
System\Xml\XPath\XPathNavigatorReader.cs (1)
1264public override string GetAttribute(string localName, string namespaceName)
20 references to GetAttribute
ILCompiler.Compiler (2)
src\runtime\src\coreclr\tools\Common\Compiler\FeatureSettings.cs (1)
46return nav.GetAttribute(attribute, string.Empty);
src\runtime\src\coreclr\tools\Common\Compiler\ProcessLinkerXmlBase.cs (1)
527return nav.GetAttribute(attribute, XmlNamespace);
ILCompiler.ReadyToRun (2)
src\runtime\src\coreclr\tools\Common\Compiler\FeatureSettings.cs (1)
46return nav.GetAttribute(attribute, string.Empty);
src\runtime\src\coreclr\tools\Common\Compiler\ProcessLinkerXmlBase.cs (1)
527return nav.GetAttribute(attribute, XmlNamespace);
illink (2)
Microsoft.AspNetCore.OpenApi.SourceGenerators (5)
XmlComments\XmlParameterComment.cs (3)
26var name = nav.GetAttribute("name", string.Empty); 31var example = nav.GetAttribute("example", string.Empty); 32var deprecated = nav.GetAttribute("deprecated", string.Empty);
XmlComments\XmlResponseComment.cs (2)
27var code = nav.GetAttribute("code", string.Empty); 32var example = nav.GetAttribute("example", string.Empty);
Microsoft.VisualStudio.TestPlatform.Common (1)
Utilities\FakesUtilities.cs (1)
129var uri = dataCollectorNavigator.GetAttribute("uri", string.Empty);
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
Utilities\XmlRunSettingsUtilities.cs (2)
71var uri = dataCollectorNavigator?.GetAttribute("uri", string.Empty); 101var friendlyName = dataCollectorNavigator?.GetAttribute("friendlyName", string.Empty);
PresentationFramework (1)
System\Windows\Annotations\Storage\XmlStreamStore.cs (1)
563string nodeId = node.GetAttribute("Id", "");
System.Private.Xml (3)
System\Xml\Xsl\XsltOld\Compiler.cs (3)
258InsertExtensionNamespace(Input!.Navigator.GetAttribute(Input.Atoms.ExtensionElementPrefixes, Input.Atoms.UriXsl)); 263InsertExcludedNamespace(Input!.Navigator.GetAttribute(Input.Atoms.ExcludeResultPrefixes, Input.Atoms.UriXsl)); 279string value = Input!.Navigator.GetAttribute(Atoms.Version, Atoms.UriXsl);
vstest.console (1)
Processors\EnableCodeCoverageArgumentProcessor.cs (1)
289var fn = dataCollectorNavigator?.GetAttribute("friendlyName", string.Empty);
vstest.console.arm64 (1)
src\vstest\src\vstest.console\Processors\EnableCodeCoverageArgumentProcessor.cs (1)
289var fn = dataCollectorNavigator?.GetAttribute("friendlyName", string.Empty);