Example #1
0
 /// <inheritdoc/>
 public override string GetAttribute(string name) => BaseReader.GetAttribute(name);
Example #2
0
 /// <inheritdoc/>
 public override string GetAttribute(string localName, string namespaceURI) => BaseReader.GetAttribute(localName, namespaceURI);
Example #3
0
 /// <inheritdoc/>
 public override string GetAttribute(int index) => BaseReader.GetAttribute(index);
Example #4
0
 /// <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);
Example #5
0
 /// <inheritdoc/>
 public override string GetAttribute(string localName, string namespaceURI)
 {
     return(BaseReader.GetAttribute(localName, namespaceURI));
 }
Example #6
0
 /// <inheritdoc/>
 public override string GetAttribute(string name)
 {
     return(BaseReader.GetAttribute(name));
 }
Example #7
0
 /// <inheritdoc/>
 public override string GetAttribute(int index)
 {
     return(BaseReader.GetAttribute(index));
 }