Method | Description | |
---|---|---|
Attribute ( ) : Entry |
This is used to convert the provided object to an attribute. The conversion process ensures the node can be digested by the core reader and used to provide an
|
|
Build ( Start node ) : Start |
This is used to build the attributes that are to be used to populate the start event. Populating the start event with the attributes it contains is required so that each element will contain its associated attributes. Only attributes that are not reserved will be added to the start event.
|
|
Convert ( ) : EventNode | ||
End ( ) : End |
This is used to create an event to signify that an element has just ended. End events are important as they allow the core reader to determine if a node is still in context. This provides a more convenient way to use
|
|
Next ( ) : EventNode |
This is used to take the next node from the document. This will scan through the document, ignoring any comments to find the next relevant XML event to acquire. Typically events will be the start and end of an element, as well as any text nodes.
|
|
Peek ( ) : EventNode |
This is used to peek at the node from the document. This will scan through the document, ignoring any comments to find the next relevant XML event to acquire. Typically events will be the start and end of an element, as well as any text nodes.
|
|
Read ( ) : EventNode |
This is used to read the next node from the document. This will scan through the document, ignoring any comments to find the next relevant XML event to acquire. Typically events will be the start and end of an element, as well as any text nodes.
|
|
Start ( ) : Start |
This is used to convert the provided event to a start event. The conversion process ensures the node can be digested by the core reader and used to provide an
|
|
StreamReader ( XmlReader reader ) : System.Collections.Generic |
Constructor for the
|
|
Text ( ) : Text |
This is used to convert the provided event to a text event. The conversion process ensures the node can be digested by the core reader and used to provide an
|
Method | Description | |
---|---|---|
Close ( ) : End |
This is used to create an event to signify that an element has just ended. End events are important as they allow the core reader to determine if a node is still in context. This provides a more convenient way to use
|
|
Open ( ) : Start |
This is used to convert the provided event to a start event. The conversion process ensures the node can be digested by the core reader and used to provide an
|
|
Value ( ) : Text |
This is used to convert the provided event to a text event. The conversion process ensures the node can be digested by the core reader and used to provide an
|
public StreamReader ( XmlReader reader ) : System.Collections.Generic | ||
reader | XmlReader | /// this is the reader used to parse the XML source /// |
return | System.Collections.Generic |