Skip to main content
.NET 6.0+

ISerializableObjectLayerService.LoadCollectionObjects(XPDictionaryStub, String, XPObjectStub) Method

When implemented by a class, executes an object layer’s ISerializableObjectLayer.LoadCollectionObjects method implementation 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/LoadCollectionObjects")]
[XmlSerializerFormat]
OperationResult<SerializableObjectLayerResult<XPObjectStubCollection>> LoadCollectionObjects(
    XPDictionaryStub dictionary,
    string refPropertyName,
    XPObjectStub ownerObject
)

Parameters

Name Type Description
dictionary XPDictionaryStub

An XPDictionaryStub object that is a metadata information provider.

refPropertyName String

A String value specifying the ownerObject‘s property that references a collection property.

ownerObject XPObjectStub

An XPObjectStub specifying the object that owns the collection property.

Returns

Type Description
OperationResult<DevExpress.Xpo.SerializableObjectLayerResult<XPObjectStubCollection>>

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

See Also