RestierOperationType

Specifies the type of operation being performed in Restier for logging and tracking purposes. Used by RestierHelpers to provide consistent operation logging across entity lifecycle events.

Syntax

public enum RestierOperationType

Fields

Deleted

Deleted = 7
Indicates that an entity has been successfully deleted (completed).

Returns

RestierOperationType

Deleting

Deleting = 6
Indicates that an entity is currently being deleted (in progress).

Returns

RestierOperationType

Filtered

Filtered = 1
Indicates that entities have been filtered during query operations.

Returns

RestierOperationType

Inserted

Inserted = 3
Indicates that an entity has been successfully inserted (completed).

Returns

RestierOperationType

Inserting

Inserting = 2
Indicates that an entity is currently being inserted (in progress).

Returns

RestierOperationType

Updated

Updated = 5
Indicates that an entity has been successfully updated (completed).

Returns

RestierOperationType

Updating

Updating = 4
Indicates that an entity is currently being updated (in progress).

Returns

RestierOperationType