Table of Contents

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

sender object

The object the error in which the error was caused.

ErrCategoryId int

The id of the Error.

statusId int

The error's status id. This is a code that can be used to identify the origin of the error.

info string

Information about the circumstances that caused the error.

Examples

function _vdError(Sender, errorCatId, statusId, info) {
    //Code to do
}

function fn(){
    vdcanvas.vdError = _vdError;
}

Constructors

vdErrorDelegate(object, IntPtr)