SqlBulkCopyOptions
Bitwise flag that specifies one or more options to use with an instance of SqlBulkCopy.
namespace System.Data.SqlClient
{
[Flags]
public enum SqlBulkCopyOptions
{
Default = 0,
KeepIdentity = 1,
CheckConstraints = 2,
TableLock = 4,
KeepNulls = 8,
FireTriggers = 16,
UseInternalTransaction = 32
}
}