/// <inheritdoc/> public override string GetAttribute(string name) => BaseReader.GetAttribute(name);
/// <inheritdoc/> public override string GetAttribute(string localName, string namespaceURI) => BaseReader.GetAttribute(localName, namespaceURI);
/// <inheritdoc/> public override string GetAttribute(int index) => BaseReader.GetAttribute(index);
/// <devdoc> /// <para> /// Gets the value of the attribute with the /// specified <see cref='XPathReader.LocalName' /> and /// <see cref='XPathReader.NamespaceURI' /> . /// </para> /// </devdoc> public override string GetAttribute(string AttributeName, string NamespaceUri) => BaseReader.GetAttribute(AttributeName, NamespaceUri);
/// <inheritdoc/> public override string GetAttribute(string localName, string namespaceURI) { return(BaseReader.GetAttribute(localName, namespaceURI)); }
/// <inheritdoc/> public override string GetAttribute(string name) { return(BaseReader.GetAttribute(name)); }
/// <inheritdoc/> public override string GetAttribute(int index) { return(BaseReader.GetAttribute(index)); }