22 overrides of GetAttribute
Microsoft.Build.Engine.UnitTests (1)
Construction\XmlReaderWithoutLocation_Tests.cs (1)
49public override string GetAttribute(int i)
PresentationBuildTasks (1)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
79public override string GetAttribute( int i )
System.Data.Common (1)
System\Data\xmlsaver.cs (1)
3435public override string GetAttribute(int i)
System.IO.Packaging (1)
System\IO\Packaging\XmlWrappingReader.cs (1)
60public override string GetAttribute(int i)
System.Private.DataContractSerialization (4)
System\Runtime\Serialization\ExtensionDataReader.cs (1)
409public override string GetAttribute(int i)
System\Runtime\Serialization\XmlSerializableReader.cs (1)
101public override string GetAttribute(int i) { return InnerReader.GetAttribute(i); }
System\Xml\XmlBaseReader.cs (1)
611public override string GetAttribute(int index)
System\Xml\XmlDictionaryReader.cs (1)
1371public override string GetAttribute(int index)
System.Private.Xml (12)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
682public override string GetAttribute(int i)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
433public override string GetAttribute(int i)
System\Xml\Core\XmlTextReader.cs (1)
196public override string GetAttribute(int i)
System\Xml\Core\XmlTextReaderImpl.cs (1)
1065public override string GetAttribute(int i)
System\Xml\Core\XmlValidatingReader.cs (1)
134public override string GetAttribute(int i)
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
470public override string GetAttribute(int i)
System\Xml\Core\XmlWrappingReader.cs (1)
68public override string GetAttribute(int i)
System\Xml\Core\XsdCachingReader.cs (1)
280public override string GetAttribute(int i)
System\Xml\Core\XsdValidatingReader.cs (1)
1164public override string GetAttribute(int i)
System\Xml\Dom\XmlNodeReader.cs (1)
1355public override string GetAttribute(int attributeIndex)
System\Xml\XPath\XPathNavigatorReader.cs (1)
522public override string GetAttribute(int index)
System\Xml\Xsl\XsltOld\ReaderOutput.cs (1)
215public override string GetAttribute(int i)
System.Private.Xml.Linq (1)
System\Xml\Linq\XNodeReader.cs (1)
553public override string GetAttribute(int index)
System.Xaml (1)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
79public override string GetAttribute( int i )
27 references to GetAttribute
Microsoft.Build.Engine.UnitTests (1)
Construction\XmlReaderWithoutLocation_Tests.cs (1)
51return _wrappedReader.GetAttribute(i);
PresentationBuildTasks (2)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlCompatibilityReader.cs (1)
371result = Reader.GetAttribute(i);
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
81return _reader.GetAttribute( i );
System.Data.Common (11)
System\Data\DataSet.cs (6)
1728topNode.SetAttribute(reader.Name, reader.GetAttribute(i)); 1734attr.Value = reader.GetAttribute(i); 2159topNode.SetAttribute(reader.Name, reader.GetAttribute(i)); 2164attr.Value = reader.GetAttribute(i); 2705topNode.SetAttribute(reader.Name, reader.GetAttribute(i)); 2710attr.Value = reader.GetAttribute(i);
System\Data\DataTable.cs (4)
5856topNode.SetAttribute(reader.Name, reader.GetAttribute(i)); 5862attr.Value = reader.GetAttribute(i); 6125topNode.SetAttribute(reader.Name, reader.GetAttribute(i)); 6131attr.Value = reader.GetAttribute(i);
System\Data\xmlsaver.cs (1)
3437return _xmlreader.GetAttribute(i);
System.IO.Packaging (2)
System\IO\Packaging\XmlCompatibilityReader.cs (1)
347result = Reader.GetAttribute(i);
System\IO\Packaging\XmlWrappingReader.cs (1)
62return _reader.GetAttribute(i);
System.Private.DataContractSerialization (3)
System\Runtime\Serialization\XmlReaderDelegator.cs (1)
56return reader.GetAttribute(i);
System\Runtime\Serialization\XmlSerializableReader.cs (1)
101public override string GetAttribute(int i) { return InnerReader.GetAttribute(i); }
System\Xml\XmlDictionaryReader.cs (1)
1373return _reader.GetAttribute(index);
System.Private.Xml (6)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
436return _coreReader.GetAttribute(i);
System\Xml\Core\XmlReader.cs (1)
564public virtual string this[int i] => GetAttribute(i);
System\Xml\Core\XmlSubtreeReader.cs (1)
300return reader.GetAttribute(i);
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
472return _coreReader.GetAttribute(i);
System\Xml\Core\XmlWrappingReader.cs (1)
70return reader.GetAttribute(i);
System\Xml\Core\XsdValidatingReader.cs (1)
1171return _coreReader.GetAttribute(i);
System.Xaml (2)
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlCompatibilityReader.cs (1)
371result = Reader.GetAttribute(i);
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\XmlWrappingReader.cs (1)
81return _reader.GetAttribute( i );