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