8 references to FillErrorEventHandler
netstandard (1)
netstandard.cs (1)
531[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.FillErrorEventHandler))]
System.Data (1)
src\libraries\shims\System.Data\ref\System.Data.cs (1)
97[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.FillErrorEventHandler))]
System.Data.Common (6)
System\Data\Common\DataAdapter.cs (2)
191public event FillErrorEventHandler? FillError 741((FillErrorEventHandler?)Events[s_eventFillError])?.Invoke(this, value);
System\Data\DataSet.cs (1)
3541public virtual void Load(IDataReader reader, LoadOption loadOption, FillErrorEventHandler? errorHandler, params DataTable[] tables)
System\Data\DataTable.cs (1)
4969public virtual void Load(IDataReader reader, LoadOption loadOption, FillErrorEventHandler? errorHandler)
System\Data\DataTableExtensions.cs (2)
75public static void CopyToDataTable<T>(this IEnumerable<T> source, DataTable table, LoadOption options, FillErrorEventHandler? errorHandler) 83private static DataTable LoadTableFromEnumerable<T>(IEnumerable<T> source, DataTable? table, LoadOption? options, FillErrorEventHandler? errorHandler)