Skip to main content
.NET 6.0+

ISerializableObjectLayerEx.LoadDelayedProperties(XPDictionaryStub, XPObjectStub, String[]) 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

SerializableObjectLayerResult<object[]> LoadDelayedProperties(
    XPDictionaryStub dictionary,
    XPObjectStub theObject,
    string[] props
)

Parameters

Name Type Description
dictionary XPDictionaryStub

An XPDictionaryStub object that is a metadata information provider.

theObject XPObjectStub

A persistent object containing delayed properties specified by the props.

props String[]

An array of strings specifying the delayed theObject‘s properties whose values are loaded.

Returns

Type Description
DevExpress.Xpo.SerializableObjectLayerResult<Object[]>

A SerializableObjectLayerResult instance that exposes an array of loaded property values corresponding to the props array elements.

See Also