Skip to main content
.NET Framework 4.6.2+

XPObjectSpace.IsDeletedObject(Object) Method

Indicates whether the specified persistent object is deleted.

Namespace: DevExpress.ExpressApp.Xpo

Assembly: DevExpress.ExpressApp.Xpo.v24.2.dll

NuGet Package: DevExpress.ExpressApp.Xpo

Declaration

public override bool IsDeletedObject(
    object obj
)

Parameters

Name Type Description
obj Object

The object to test.

Returns

Type Description
Boolean

true if the specified object is marked as deleted; otherwise, false.

Remarks

This method passes the request to the Session.IsObjectMarkedDeleted method and returns its value.

To learn more, see Deferred and Immediate Object Deletion.

See Also