<PackageReference Include="NETStandard.Library" Version="2.0.0" />
System.Data.FillErrorEventArgs
namespace System.
Data
{
public class FillErrorEventArgs :
EventArgs
{
public bool Continue { get; set; }
public DataTable DataTable { get; }
public Exception Errors { get; set; }
public object[]
Values { get; }
public FillErrorEventArgs(
DataTable dataTable,
object[]
values);
}
}