Skip to main content
.NET 6.0+

ISerializableObjectLayerService.IsParentObjectToDelete(XPDictionaryStub, XPObjectStub) Method

When implemented by a class, executes an object layer’s ISerializableObjectLayerEx.IsParentObjectToDelete 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/IsParentObjectToDelete")]
[XmlSerializerFormat]
OperationResult<bool> IsParentObjectToDelete(
    XPDictionaryStub dictionary,
    XPObjectStub theObject
)

Parameters

Name Type Description
dictionary XPDictionaryStub

An XPDictionaryStub object that is a metadata information provider.

theObject XPObjectStub

An XPObjectStub instance identifying an object layer session’s object to test.

Returns

Type Description
OperationResult<Boolean>

An OperationResult<Boolean> object denoting the operation result.

See Also