Skip to main content
.NET 6.0+

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

When implemented by a class, executes the corresponding ISerializableObjectLayerEx.LoadDelayedProperties overloaded method implementation of an object layer and returns the operation result.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

[OperationContract(Action = "http://tempuri.org/ISerializableObjectLayerService/LoadDelayedProperties")]
[XmlSerializerFormat]
OperationResult<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 delayed the theObject‘s properties whose values are loaded.

Returns

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

An OperationResult<DevExpress.Xpo.SerializableObjectLayerResult`1[[System.Object> object denoting the operation result.

See Also