Skip to main content
.NET 8.0+

Session.ObjectLoading Event

Occurs when an object’s properties are about to be initialized with values from a data store.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v24.2.dll

NuGet Package: DevExpress.Xpo

#Declaration

public event ObjectManipulationEventHandler ObjectLoading

#Event Data

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

Property Description
Object Gets the object currently being processed.
Session Gets the session whose persistent object is currently being processed.

#Remarks

An object’s IXPObject.OnLoading event is raised after the ObjectLoading event.

See Also