Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCloudStorage.OnError Event

In This Article

Notifies of an error that can occur when the component attempts to access an online file storage service or perform any file operation in the connected account.

#Declaration

Delphi
property OnError: TErrorEvent read; write;

#Remarks

Online file management operations can result in errors due to insufficient account permissions, incorrect server response, and network unavailability. The OnError event occurs every time an attempt to access or synchronize a file or folder on the target online storage fails for any reason.

You can handle this event to obtain information on any error via the AErrorObject parameter. The actual AErrorObject value type depends on the active online data provider type. Refer to the TErrorEvent nested procedural type description for details on parameters accessible within the OnError event handler.

Note

To obtain information on an error that can occur when an application attempts to authenticate or authorize in an online account, handle the associated authorization agent‘s OnError event.

See Also