//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.UI { using System; /// /// Specifies a conflict resolution mode. /// public enum ConflictOptions { /// /// Specifies that only the new values and the keys will be passed to the update or delete query /// OverwriteChanges = 0, /// /// Specifies that the old values will also be passed to the update or delete query /// CompareAllValues = 1 } }