Skip to main content

ASPxClientGaugeControl.CallbackError Event

Fires when errors have occurred during callback processing.

Declaration

CallbackError: ASPxClientEvent<ASPxClientCallbackErrorEventHandler<ASPxClientGaugeControl>>

Event Data

The CallbackError event's data class is ASPxClientCallbackErrorEventArgs. The following properties provide information specific to this event:

Property Description
handled Gets or sets whether the event is handled and the default error handling actions are not required.
message Gets the error message that describes the server error that occurred.

Remarks

The CallbackError event can be used to perform specific client-side actions when an error has occured during callback processing. The error message that describes the server error that occurred is returned by the event parameter’s ASPxClientCallbackErrorEventArgs.message property. If no default processing is required, set the ASPxClientCallbackErrorEventArgs.handled property to true.

See Also