UpdateOperations Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No operations were performed on the resource. |
Add | 1 | The entity was added. |
Change | 2 | The entity was modified. |
Delete | 4 | The entity was deleted. |
Remarks
This enumeration is used on interceptors to determine what kind of changes were performed on entities before they were saved.