// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace Microsoft.Web.Http.Data
{
///
/// Enumeration of the types of operations a can perform.
///
public enum ChangeOperation
{
///
/// Indicates that no operation is to be performed
///
None,
///
/// Indicates an operation that inserts new data
///
Insert,
///
/// Indicates an operation that updates existing data
///
Update,
///
/// Indicates an operation that deletes existing data
///
Delete,
///
/// Indicates a custom update operation
///
Custom
}
}