Resumes parsing after the reader has been suspended with the suspend method.
Visual Basic Usage Syntax
oSAXXMLReader.resume
C/C++ Syntax
HRESULT resume( );
Return Values
The following table shows the return codes for the resume method based on the state of the reader.
| State | Return Code |
|---|---|
| Ready | E_NOTIMPL |
| Parsing | E_NOTIMPL |
| Suspended | E_NOTIMPL |
Remarks
The following table shows the behavior for the resume method based on the state of the reader.
| State | Behavior |
|---|---|
| Ready | Returns a trappable error while the reader remains in the ready state.) (To be implemented in a future release.) |
| Parsing | Returns a trappable error while the reader continues parsing. (To be implemented in a future release.) |
| Suspended | The return code is defined by the parse or resume methods or handler. After resume executes, the reader starts parsing.(To be implemented in a future release.) |
The resume method must be called from outside a handler call.
Versioning
MSXML 3.0, unimplemented