ADO.NET in a Nutshell

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 System.EventArgs MergeFailedEventArgs

Passed To

MergeFailedEventHandler.{BeginInvoke( ) , Invoke( )}

Категории