DXPConfigurationS9 Constructor (InputSource, EntityResolver, Boolean)XML Compare .NET API Documentation
XML Compare .NET API Documentation - DEPRECATED
Creates a DXP object from an InputSource.

Namespace: DeltaXML.CoreS9Api
Assembly: DeltaXML.CoreS9Api (in DeltaXML.CoreS9Api.dll) Version: 10.4.0.1000 (10.4.0.1000)
Syntax

public DXPConfigurationS9(
	InputSource source,
	EntityResolver er,
	bool validate
)

Parameters

source
Type: DeltaXML.CoreS9Api InputSource
The source containing the DXP description in its XML format.
er
Type: DeltaXML.CoreS9Api EntityResolver
The entity resolver used when loading the DXP description and for locating its associated filters.
validate
Type: System Boolean
Whether to validate the input against the DTD defintion it provides.
Exceptions

ExceptionCondition
com.deltaxml.core ParserInstantiationExceptionThrown if there are problems creating the parser.
[X:net.sf.saxon.s9api.SaxonAPIException]Thrown if there are parsing errors or other s9api related problems.
com.deltaxml.core InvalidPipelineExceptionThrown if the DXP contains errors (beyond standard validation errors)
Remarks

An input source can be constructed from a Stream, TextReader, or BaseUri. Relative paths in XML entities will be resolved with respect to the BaseUri, which defaults to the current working directory, but can be explicitly set via the InputSource's BaseUri property.
See Also