Class XmlReaderExtensions
- Namespace
- Cuemon.Extensions.Xml
- Assembly
- Cuemon.Extensions.Xml.dll
Extension methods for the XmlReader class.
public static class XmlReaderExtensions
- Inheritance
-
XmlReaderExtensions
Methods
Chunk(XmlReader, int, Action<XmlWriterSettings>)
Creates and returns a sequence of chunked XmlReader instances with a maximum of the specified size of XML node elements located on a depth of 1.
public static IEnumerable<XmlReader> Chunk(this XmlReader reader, int size = 128, Action<XmlWriterSettings> setup = null)
Parameters
readerXmlReaderThe XmlReader to extend.
sizeintThe amount of XML node elements allowed per XmlReader object. Default is 128 XML node element.
setupAction<XmlWriterSettings>The XmlWriterSettings which may be configured.
Returns
- IEnumerable<XmlReader>
An sequence of XmlReader instances that contains no more than the specified
sizeof XML node elements from thereaderobject.
Exceptions
- ArgumentNullException
readeris null.- ArgumentException
The Read() method of the
readerobject has already been called.
MoveToFirstElement(XmlReader)
Moves the reader to the first element.
public static bool MoveToFirstElement(this XmlReader reader)
Parameters
Returns
- bool
trueif an element exists (the reader moves to the first element), otherwise,false(the reader has reached EOF).
Exceptions
- ArgumentNullException
readeris null.- ArgumentException
The Read() method of the
readerobject has already been called.
ToHierarchy(XmlReader)
Converts the XML hierarchy of the reader into an IHierarchy<T>.
public static IHierarchy<DataPair> ToHierarchy(this XmlReader reader)
Parameters
Returns
- IHierarchy<DataPair>
An IHierarchy{DataPair} implementation.
Exceptions
- ArgumentNullException
readercannot be null.
ToStream(XmlReader, Action<XmlCopyOptions>)
Copies everything from the specified reader and returns the result as an XML stream.
public static Stream ToStream(this XmlReader reader, Action<XmlCopyOptions> setup = null)
Parameters
readerXmlReaderThe XmlReader to extend.
setupAction<XmlCopyOptions>The XmlCopyOptions which may be configured.
Returns
Exceptions
- ArgumentNullException
readeris null.
ToStream(XmlReader, Action<XmlWriter, XmlReader, DisposableOptions>, Action<XmlCopyOptions>)
Copies the specified reader using the specified delegate copier and returns the result as an XML stream.
public static Stream ToStream(this XmlReader reader, Action<XmlWriter, XmlReader, DisposableOptions> copier, Action<XmlCopyOptions> setup = null)
Parameters
readerXmlReaderThe XmlReader to extend.
copierAction<XmlWriter, XmlReader, DisposableOptions>The delegate that will create an in-memory copy of
readeras a XML stream.setupAction<XmlCopyOptions>The XmlCopyOptions which may be configured.
Returns
Exceptions
- ArgumentNullException
readeris null - or -copieris null.