Skip to main content
.NET 6.0+

XPObjectSpace.IsDeletedObject(Object) Method

Indicates whether the specified persistent object is deleted and this is committed to the database.

Namespace: DevExpress.ExpressApp.Xpo

Assembly: DevExpress.ExpressApp.Xpo.v23.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