Base:
method
GetAttribute
System.Xml.XmlReader.GetAttribute(System.String)
1 override of GetAttribute
PresentationFramework (1)
src\Framework\System\Windows\Markup\FilteredXmlReader.cs (1)
136public override string GetAttribute( string attributeName )
19 references to GetAttribute
PresentationFramework (2)
src\Framework\System\Windows\Markup\FilteredXmlReader.cs (2)
144return base.GetAttribute( attributeName ); 287if( base.GetAttribute(uidQualifiedName) != null ) // Do NOT use base[uidQualifiedName], that just comes right back to us.
System.Configuration (12)
System\Configuration\BaseConfigurationRecord.cs (7)
1818string locationSubPathAttribute = xmlUtil.Reader.GetAttribute(KEYWORD_LOCATION_PATH); 1889string locationSubPath = xmlUtil.Reader.GetAttribute(KEYWORD_LOCATION_PATH); 1938string protectionProviderAttribute = xmlUtil.Reader.GetAttribute(KEYWORD_PROTECTION_PROVIDER); 1949string configBuilderAttribute = xmlUtil.Reader.GetAttribute(KEYWORD_CONFIG_BUILDER); 3086string configSourceAttribute = xmlUtil.Reader.GetAttribute(KEYWORD_CONFIGSOURCE); 3103string protectionProviderAttribute = xmlUtil.Reader.GetAttribute(KEYWORD_PROTECTION_PROVIDER); 3120string configBuilderAttribute = xmlUtil.Reader.GetAttribute(KEYWORD_CONFIG_BUILDER);
System\Configuration\MgmtConfigurationRecord.cs (5)
2577string name = reader.GetAttribute(KEYWORD_SECTIONGROUP_NAME); 2811string locationSubPathAttribute = reader.GetAttribute(KEYWORD_LOCATION_PATH); 2838string allowOverrideAttribute = reader.GetAttribute(KEYWORD_LOCATION_ALLOWOVERRIDE); 2843string overrideModeAttribute = reader.GetAttribute(KEYWORD_LOCATION_OVERRIDEMODE); 2850string inheritInChildAppsAttribute = reader.GetAttribute(KEYWORD_LOCATION_INHERITINCHILDAPPLICATIONS);
WindowsBase (5)
Base\System\IO\Packaging\ZipPackage.cs (4)
1334string extensionAttributeValue = reader.GetAttribute(ExtensionAttributeName); 1337string contentTypeAttributeValue = reader.GetAttribute(ContentTypeAttributeName); 1365string partNameAttributeValue = reader.GetAttribute(PartNameAttributeName); 1368string contentTypeAttributeValue = reader.GetAttribute(ContentTypeAttributeName);
Shared\MS\Internal\IO\Packaging\PackagingUtilities.cs (1)
75encoding = reader.GetAttribute(_encodingAttribute);