xmlunit-core : Org.XmlUnit.Builder Namespace

Input Class

Fluent API to create ISource instances.

Syntax

public sealed class Input

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

Members

See Also: Inherited members from object.

Public Constructors

Input ()
Documentation for this section has not yet been entered.

Public Methods

static
ByTransforming (Input.IBuilder) : Input.ITransformationBuilder
Build an ISource by XSLT transforming a different ISource.
static
ByTransforming (Org.XmlUnit.ISource) : Input.ITransformationBuilder
Build an ISource by XSLT transforming a different ISource.
static
From (object) : Input.IBuilder
Return the matching Builder for the supported types: ISource, IBuilder, XmlDocument, XmlNode, byte[] (XML as byte[]), string (XML as String) Uri (to an XML-Document), Stream, TextReader, XDocument, XNode
static
FromByteArray (byte[]) : Input.IBuilder
Build an ISource from an array of bytes.
static
FromDocument (System.Xml.Linq.XDocument) : Input.IBuilder
Build an ISource from a System.Xml.Linq Document.
static
FromDocument (System.Xml.XmlDocument) : Input.IBuilder
Build an ISource from a DOM Document.
static
FromFile (string) : Input.IBuilder
Build an ISource from a named file.
static
FromNode (System.Xml.Linq.XNode) : Input.IBuilder
Build an ISource from a System.Xml.Linq Node.
static
FromNode (System.Xml.XmlNode) : Input.IBuilder
Build an ISource from a DOM Node.
static
FromReader (System.IO.TextReader) : Input.IBuilder
Build an ISource from a reader.
static
FromStream (System.IO.Stream) : Input.IBuilder
Build an ISource from a stream.
static
FromString (string) : Input.IBuilder
Build an ISource from a string.
static
FromURI (string) : Input.IBuilder
Build an ISource from an URI. must represent a valid URL
static
FromURI (Uri) : Input.IBuilder
Build an ISource from an URI. must represent a valid URL

Extension Methods

static
Singleton<T> (this T) : IEnumerable<T>
An enumerable containing a single element.

Member Details

Input Constructor

Documentation for this section has not yet been entered.

Syntax

public Input ()

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

ByTransforming Method

Build an ISource by XSLT transforming a different ISource.

Syntax

public static Input.ITransformationBuilder ByTransforming (Input.IBuilder b)

Parameters

b
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

ByTransforming Method

Build an ISource by XSLT transforming a different ISource.

Syntax

public static Input.ITransformationBuilder ByTransforming (Org.XmlUnit.ISource s)

Parameters

s
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

From Method

Return the matching Builder for the supported types: ISource, IBuilder, XmlDocument, XmlNode, byte[] (XML as byte[]), string (XML as String) Uri (to an XML-Document), Stream, TextReader, XDocument, XNode

Syntax

public static Input.IBuilder From (object source)

Parameters

source
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromByteArray Method

Build an ISource from an array of bytes.

Syntax

public static Input.IBuilder FromByteArray (byte[] b)

Parameters

b
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromDocument Method

Build an ISource from a System.Xml.Linq Document.

Syntax

public static Input.IBuilder FromDocument (System.Xml.Linq.XDocument d)

Parameters

d
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromDocument Method

Build an ISource from a DOM Document.

Syntax

public static Input.IBuilder FromDocument (System.Xml.XmlDocument d)

Parameters

d
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromFile Method

Build an ISource from a named file.

Syntax

public static Input.IBuilder FromFile (string name)

Parameters

name
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromNode Method

Build an ISource from a System.Xml.Linq Node.

Syntax

public static Input.IBuilder FromNode (System.Xml.Linq.XNode n)

Parameters

n
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromNode Method

Build an ISource from a DOM Node.

Syntax

public static Input.IBuilder FromNode (System.Xml.XmlNode n)

Parameters

n
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromReader Method

Build an ISource from a reader.

Syntax

public static Input.IBuilder FromReader (System.IO.TextReader r)

Parameters

r
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromStream Method

Build an ISource from a stream.

Syntax

public static Input.IBuilder FromStream (System.IO.Stream s)

Parameters

s
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromString Method

Build an ISource from a string.

Syntax

public static Input.IBuilder FromString (string s)

Parameters

s
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromURI Method

Build an ISource from an URI. must represent a valid URL

Syntax

public static Input.IBuilder FromURI (string uri)

Parameters

uri
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121

FromURI Method

Build an ISource from an URI. must represent a valid URL

Syntax

public static Input.IBuilder FromURI (Uri uri)

Parameters

uri
Documentation for this section has not yet been entered.

Returns

Documentation for this section has not yet been entered.

Remarks

Documentation for this section has not yet been entered.

Requirements

Namespace: Org.XmlUnit.Builder
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.6.0.121