Microsoft.Data.SqlClient.SqlRowsCopiedEventArgs
Represents the set of arguments passed to the SqlRowsCopiedEventHandler .
namespace Microsoft.Data.SqlClient
{
public class SqlRowsCopiedEventArgs : EventArgs
{
public bool Abort { get; set; }
public long RowsCopied { get; }
public SqlRowsCopiedEventArgs(long rowsCopied);
}
}