1 //------------------------------------------------------------------------------ 2 // <copyright file="ConflictOptions.cs" company="Microsoft"> 3 // Copyright (c) Microsoft Corporation. All rights reserved. 4 // </copyright> 5 //------------------------------------------------------------------------------ 6 7 namespace System.Web.UI { 8 9 using System; 10 11 /// <devdoc> 12 /// Specifies a conflict resolution mode. 13 /// </devdoc> 14 public enum ConflictOptions { 15 16 /// <devdoc> 17 /// Specifies that only the new values and the keys will be passed to the update or delete query 18 /// </devdoc> 19 OverwriteChanges = 0, 20 21 /// <devdoc> 22 /// Specifies that the old values will also be passed to the update or delete query 23 /// </devdoc> 24 CompareAllValues = 1 25 } 26 }