DekGenius.com
[ Team LiB ] Previous Section Next Section

MergeFailedEventArgs

System.Data (system.data.dll) class

This class provides data for the DataSet.MergeFailed event. This includes the DataTable in which the problem occurred (Table ) and a descriptive error message (Conflict ).

public class MergeFailedEventArgs : EventArgs {
// Public Constructors
   public MergeFailedEventArgs(DataTable table, string conflict);
// Public Instance Properties
   public string Conflict{get; } 
   public DataTable Table{get; } 
}

Hierarchy

System.Object figs/U2192.gif System.EventArgs figs/U2192.gif MergeFailedEventArgs

Passed To

MergeFailedEventHandler.{BeginInvoke( ) , Invoke( )}

    [ Team LiB ] Previous Section Next Section