ParserErrorCallback Delegate
Defines an error callback method that can be executed during a parsing operation.
public delegate IParserErrorResult ParserErrorCallback(IParserState state);
Parameters
Returns
Constructors
ParserErrorCallback(Object, IntPtr)
public ParserErrorCallback(object object, IntPtr method)
Parameter |
Type |
Description |
object |
System.Object |
|
method |
IntPtr |
|
Methods
BeginInvoke(IParserState, AsyncCallback, Object)
public virtual IAsyncResult BeginInvoke(IParserState state, AsyncCallback callback, object object)
Parameter |
Type |
Description |
state |
IParserState |
|
callback |
System.AsyncCallback |
|
object |
System.Object |
|
Returns
- System.IAsyncResult
EndInvoke(IAsyncResult)
public virtual IParserErrorResult EndInvoke(IAsyncResult result)
Parameter |
Type |
Description |
result |
System.IAsyncResult |
|
Returns
- IParserErrorResult
Invoke(IParserState)