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

SerializableObjectLayer.LoadDelayedProperties(XPDictionaryStub, XPObjectStub, String[]) Method

Performs object layer specific operations that are required to load data to specific properties marked for delayed loading in a specified object.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.2.dll

Declaration

public 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