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, Int32, 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
reader
XmlReaderThe XmlReader to extend.
size
Int32The amount of XML node elements allowed per XmlReader object. Default is 128 XML node element.
setup
Action<XmlWriterSettings>The XmlWriterSettings which may be configured.
Returns
- IEnumerable<XmlReader>
An sequence of XmlReader instances that contains no more than the specified
size
of XML node elements from thereader
object.
Exceptions
- ArgumentNullException
reader
is null.- ArgumentException
The Read() method of the
reader
object has already been called.
MoveToFirstElement(XmlReader)
Moves the reader
to the first element.
public static bool MoveToFirstElement(this XmlReader reader)
Parameters
Returns
- Boolean
true
if an element exists (the reader moves to the first element), otherwise,false
(the reader has reached EOF).
Exceptions
- ArgumentNullException
reader
is null.- ArgumentException
The Read() method of the
reader
object 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
reader
cannot 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
reader
XmlReaderThe XmlReader to extend.
setup
Action<XmlCopyOptions>The XmlCopyOptions which may be configured.
Returns
Exceptions
- ArgumentNullException
reader
is 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
reader
XmlReaderThe XmlReader to extend.
copier
Action<XmlWriter, XmlReader, DisposableOptions>The delegate that will create an in-memory copy of
reader
as a XML stream.setup
Action<XmlCopyOptions>The XmlCopyOptions which may be configured.
Returns
Exceptions
- ArgumentNullException
reader
is null - or -copier
is null.