Click or drag to resize

DeleteResultIsDeleted Property

A flag to validate if the object was successfully removed from a single operation request

Namespace: AppOne.Services.V2
Assembly: AppOne.Web.Service (in AppOne.Web.Service.dll) Version: 1.0.141
Syntax
public bool IsDeleted { get; set; }

Property Value

Boolean
Remarks
A flag to validate if the object was successfully removed from a single operation request. If the object/record is not successfully removed the message result will provide the details for why it was not removed. The Status property will also provide additional details.

Caution note  Caution
The IsDeleted flag is not tied to any historical reference based on the ID provided. The IsDeleted is recorded as true only when the call that initiated the request recorded a delete transaction from the database. For example if a Delete request is initiated to a service call at 10:00AM with ID 1234 and again 1 minutes later at 10:01AM with the same ID 1234 the first one will return true and the second one will return false. The IsDelete property from the DeleteResult object does not carry any historical reference or audit trail to the state of the record deleted.
Example
true
See Also