Delegate vdErrorDelegate
- Namespace
- vdWebLibrary
- Assembly
- JsPropertiesExtractor.dll
Represents a method that will handle the vdError event.
public delegate void vdErrorDelegate(object sender, int ErrCategoryId, int statusId, string info)
Parameters
senderobjectThe object the error in which the error was caused.
ErrCategoryIdintThe id of the Error.
statusIdintThe error's status id. This is a code that can be used to identify the origin of the error.
infostringInformation about the circumstances that caused the error.
Examples
function _vdError(Sender, errorCatId, statusId, info) {
//Code to do
}
function fn(){
vdcanvas.vdError = _vdError;
}