Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Fill() [8/11]

virtual int System.Data.Common.DbDataAdapter.Fill ( DataTable dataTable,
IDbCommand command,
CommandBehavior behavior )
inlineprotectedvirtual

Definition at line 524 of file DbDataAdapter.cs.

525 {
526 long scopeId = DataCommonEventSource.Log.EnterScope("<comm.DbDataAdapter.Fill|API> {0}, dataTable, command, behavior={1}", base.ObjectID, behavior);
527 try
528 {
529 DataTable[] dataTables = new DataTable[1] { dataTable };
530 return Fill(dataTables, 0, 0, command, behavior);
531 }
532 finally
533 {
534 DataCommonEventSource.Log.ExitScope(scopeId);
535 }
536 }

References System.ComponentModel.Fill, and System.Data.DataCommonEventSource.Log.