Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

IObjectSpace.Reloaded Event

Occurs after the current Object Space reconnects to the database.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v20.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

event EventHandler Reloaded

Event Data

The Reloaded event's data class is EventArgs.

Remarks

If you implement the IObjectSpace interface in the BaseObjectSpace class’ descendant, to raise the Reloaded event, you should invoke the BaseObjectSpace.OnReloaded method in your BaseObjectSpace.Reload method override.

This event is handled internally, so that all objects are retrieved using the newly established connection and Action states are updated.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Reloaded event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also