Indicates to BargeEx that the specified document has been
successfully persisted or processed and that subsequent calls
to the
GetNextDocument
method should return the next available document.
Namespace:
BargeExAssembly: BargeEx (in BargeEx.dll)
Version: 3.0.400.140 (3.0.400.140)
Syntax
C# |
---|
public StandardReturnCode AcknowledgeDocument( IDocument documentToAcknowledge ) |
Visual Basic (Declaration) |
---|
Public Function AcknowledgeDocument ( _ documentToAcknowledge As IDocument _ ) As StandardReturnCode |
Visual C++ |
---|
public: StandardReturnCode AcknowledgeDocument( IDocument^ documentToAcknowledge ) |
Parameters
- documentToAcknowledge
- Type: BargeEx..::.IDocument
The document being acknowledged (i.e. the IDocument returned by the GetNextDocument method).
Return Value
A StandardReturnCode value that indicates whether or not the document was successfully acknowledged.Remarks
This method invokes the AcknowledgeDocument method available from the BargeEx web service. A value of Success indicates the document was successfully acknowledged. Any other value indicates a failure.
This method must be called following a call to GetNextDocument. If it is not, GetNextDocument will return the same document every time it is called.
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentNullException | The value of the documentToAcknowledge parameter is a null reference (Nothing in Visual Basic). |