MergeFailedEvent.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //------------------------------------------------------------------------------
  2. // <copyright file="MergeFailedEvent.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. // <owner current="false" primary="false">[....]</owner>
  8. //------------------------------------------------------------------------------
  9. namespace System.Data {
  10. using System;
  11. /// <devdoc>
  12. /// <para>[To be supplied.]</para>
  13. /// </devdoc>
  14. public class MergeFailedEventArgs : EventArgs {
  15. private DataTable table;
  16. private string conflict;
  17. /// <devdoc>
  18. /// <para>[To be supplied.]</para>
  19. /// </devdoc>
  20. public MergeFailedEventArgs(DataTable table, string conflict) {
  21. this.table = table;
  22. this.conflict = conflict;
  23. }
  24. /// <devdoc>
  25. /// <para>Gets the name of the <see cref='System.Data.DataTable'/>.</para>
  26. /// </devdoc>
  27. public DataTable Table {
  28. get { return table; }
  29. }
  30. /// <devdoc>
  31. /// <para>Gets a description of the merge conflict.</para>
  32. /// </devdoc>
  33. public string Conflict {
  34. get { return conflict; }
  35. }
  36. }
  37. }