Processes a document received from BargeEx.

Namespace:  BargeEx
Assembly:  BargeEx (in BargeEx.dll)
Version: 3.0.400.140 (3.0.400.140)

Syntax

C#
void ProcessDocument(
	IXPathNavigable document
)
Visual Basic (Declaration)
Sub ProcessDocument ( _
	document As IXPathNavigable _
)
Visual C++
void ProcessDocument(
	IXPathNavigable^ document
)

Parameters

document
Type: System.Xml.XPath..::.IXPathNavigable
An object implementing the IXPathNavigable interface. In the Microsoft .NET Framework, this can be either an XmlNode (typically an XmlDocument), or an XPathDocument containing the document received from BargeEx that should be processed.

Remarks

The method that implements this interface is called by the BargeEx Receiver anytime a document is retrieved from BargeEx. Any code required to process a document should be placed into this method.

See Also