PeterO.XEReader
## PeterO.XEReader
public sealed class XEReader :
System.IDisposable
Not documented yet.
Member Summary
[Create(string)](#Create_string)- Not documented yet.[Create(System.Xml.XmlReader)](#Create_System_Xml_XmlReader)- Not documented yet.[Current()](#Current)- Not documented yet.[Dispose()](#Dispose)- Not documented yet.[IsElement(string)](#IsElement_string)- Not documented yet.[IsElement(string, string)](#IsElement_string_string)- Not documented yet.[IsEmptyElement](#IsEmptyElement)- Gets a value indicating whether the currently read element is found to be empty.[LocalName](#LocalName)- Gets a value not documented yet.[MoveNext()](#MoveNext)- Not documented yet.[MoveNext(string)](#MoveNext_string)- Not documented yet.[MoveNext(string, string)](#MoveNext_string_string)- Not documented yet.[Name](#Name)- Gets a value not documented yet.[NamespaceName](#NamespaceName)- Gets a value not documented yet.[ReadContent()](#ReadContent)- Not documented yet.[this[string]](#this_string)- Gets an attribute from the currently read element.
public bool IsEmptyElement { get; }
Gets a value indicating whether the currently read element is found to be empty.
Returns:
true if the currently read element is found to be empty; otherwise, false .
Return Value:
A text string.
public string this[string attribute] { get; }
Gets an attribute from the currently read element.
Parameters:
- attribute: The parameter attribute is a text string.
Return Value:
A text string.
public string LocalName { get; }
Gets a value not documented yet.
Returns:
A value not documented yet.
public string Name { get; }
Gets a value not documented yet.
Returns:
A value not documented yet.
public string NamespaceName { get; }
Gets a value not documented yet.
Returns:
A value not documented yet.
public static PeterO.XEReader Create(
string file);
Not documented yet.
Parameters:
- file: The parameter file is a text string.
Return Value:
A XEReader object.
Exceptions:
- System.ArgumentNullException: The parameter file is null.
public static PeterO.XEReader Create(
System.Xml.XmlReader reader);
Not documented yet.
Parameters:
- reader: The parameter reader is a.Xml.XmlReader object.
Return Value:
A XEReader object.
Exceptions:
- System.ArgumentNullException: The parameter reader is null.
public PeterO.XEReader Current();
Not documented yet.
Return Value:
A XEReader object.
public sealed void Dispose();
Not documented yet.
public bool IsElement(
string localName);
Not documented yet.
Parameters:
- localName: The parameter localName is a text string.
Return Value:
Either true or false .
public bool IsElement(
string localName,
string namespaceName);
Not documented yet.
Parameters:
-
localName: The parameter localName is a text string.
-
namespaceName: The parameter namespaceName is a text string.
Return Value:
Either true or false .
Exceptions:
- System.InvalidOperationException: This element’s content was already read or being read.
public bool MoveNext(
string localName);
Not documented yet.
Parameters:
- localName: The parameter localName is a text string.
Return Value:
Either true or false .
public bool MoveNext(
string localName,
string namespaceName);
Not documented yet.
Parameters:
-
localName: The parameter localName is a text string.
-
namespaceName: The parameter namespaceName is a text string.
Return Value:
Either true or false .
public bool MoveNext();
Not documented yet.
Return Value:
Either true or false .
public string ReadContent();
Not documented yet.
Return Value:
A text string.