Base:
method
GetAttribute
System.Xml.XmlReader.GetAttribute(System.String)
1 override of GetAttribute
PresentationFramework (1)
System\Windows\Markup\FilteredXmlReader.cs (1)
127public override string GetAttribute( string attributeName )
14 references to GetAttribute
PresentationFramework (2)
System\Windows\Markup\FilteredXmlReader.cs (2)
135return base.GetAttribute( attributeName ); 278if( base.GetAttribute(uidQualifiedName) != null ) // Do NOT use base[uidQualifiedName], that just comes right back to us.
ReachFramework (2)
Packaging\XpsFixedDocumentReaderWriter.cs (1)
956string attribute = reader.GetAttribute(XmlTags.Source);
Packaging\XpsFixedDocumentSequenceReaderWriter.cs (1)
555string attribute = reader.GetAttribute(XmlTags.Source);
System.Configuration.ConfigurationManager (10)
System\Configuration\BaseConfigurationRecord.cs (5)
1395xmlUtil.Reader.GetAttribute(LocationPathAttribute); 1461string locationSubPath = xmlUtil.Reader.GetAttribute(LocationPathAttribute); 1509string protectionProviderAttribute = xmlUtil.Reader.GetAttribute(ProtectionProviderAttribute); 2519string configSourceAttribute = xmlUtil.Reader.GetAttribute(ConfigSourceAttribute); 2540string protectionProviderAttribute = xmlUtil.Reader.GetAttribute(ProtectionProviderAttribute);
System\Configuration\MgmtConfigurationRecord.cs (5)
2446string name = reader.GetAttribute(SectionGroupNameAttribute); 2689string locationSubPathAttribute = reader.GetAttribute(LocationPathAttribute); 2717string allowOverrideAttribute = reader.GetAttribute(LocationAllowOverrideAttribute); 2724string overrideModeAttribute = reader.GetAttribute(LocationOverrideModeAttribute); 2736reader.GetAttribute(LocationInheritInChildApplicationsAttribute);