UpdateOperations Enum

Definition

An enumeration used to specify the update operations that were performed on an entity.

This enumeration supports a bitwise combination of its member values.

public enum class UpdateOperations
[System.Flags]
public enum UpdateOperations
[<System.Flags>]
type UpdateOperations = 
Public Enum UpdateOperations
Inheritance
UpdateOperations
Attributes

Fields

Add 1

The entity was added.

Change 2

The entity was modified.

Delete 4

The entity was deleted.

None 0

No operations were performed on the resource.

Remarks

This enumeration is used on interceptors to determine what kind of changes were performed on entities before they were saved.

Applies to