EntityResolver resolveEntity Method XML Compare .NET API Documentation
XML Compare .NET API Documentation - DEPRECATED
Allow the compare methods to resolve external entities within their source XML documents.

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

InputSource resolveEntity(
	string publicId,
	string systemId
)

Parameters

publicId
Type: System String
The public identifier of the external entity being referenced, or null if none was supplied.
systemId
Type: System String
The system identifier of the external entity being referenced.

Return Value

Type: InputSource
An InputSource corresponding to the resolved Entity
Remarks

This interface is modelled on the Java org.xml.sax.EntityResolver interface in order to be compatible with SAX Parsers in general and the Xerces-J parser in particular. Its return type is however more compatible with classes and interfaces from the .NET framework.

See Also