Skip to main content
.NET 6.0+

IObjectLayerEx.LoadDelayedProperties(Session, Object, MemberPathCollection) Method

When implemented by a class, loads data to specific properties marked for delayed loading in a specified object.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

object[] LoadDelayedProperties(
    Session session,
    object theObject,
    MemberPathCollection props
)

Parameters

Name Type Description
session Session

A Session that is used to retrieve data for delayed properties.

theObject Object

A persistent object containing delayed properties specified by the props.

props DevExpress.Xpo.Metadata.Helpers.MemberPathCollection

A MemberPathCollection object containing member paths of delayed properties whose values are loaded.

Returns

Type Description
Object[]

An array of loaded property values that correspond to the props collection elements.

See Also