コード例 #1
0
 private void InitializeMembers()
 {
     this.table = null;
     this.operation = DestinationTableOperation.Create;
     this.bulkInsertBatchSize = 10000;
     this.bulkInsertTimeout = 1200;
 }
コード例 #2
0
 private void CopyMembers(DestinationTableParameters old)
 {
     this.table = old.table;
     this.operation = old.operation;
     this.bulkInsertBatchSize = old.bulkInsertBatchSize;
     this.bulkInsertTimeout = old.bulkInsertTimeout;
 }