Skip to main content
.NET 6.0+

ISerializableObjectLayerService.LoadDelayedProperty(XPDictionaryStub, XPObjectStubCollection, 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/LoadDelayedProperty")]
[XmlSerializerFormat]
OperationResult<SerializableObjectLayerResult<object[]>> LoadDelayedProperty(
    XPDictionaryStub dictionary,
    XPObjectStubCollection objects,
    string property
)

Parameters

Name Type Description
dictionary XPDictionaryStub

An XPDictionaryStub object that is a metadata information provider.

objects XPObjectStubCollection

An XPObjectStubCollection object which contains information on persistent objects containing the delayed property specified by the property.

property String

A String value specifying a delayed property 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