MySqlDataAdapter.FillAsync Method (DataTable, IDbCommand, CommandBehavior)

MySQL Connector/Net

MySqlDataAdapterFillAsync Method (DataTable, IDbCommand, CommandBehavior)
Async version of Fill

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public Task<int> FillAsync(
	DataTable dataTable,
	IDbCommand command,
	CommandBehavior behavior
)
Public Function FillAsync ( 
	dataTable As DataTable,
	command As IDbCommand,
	behavior As CommandBehavior
) As Task(Of Integer)
public:
Task<int>^ FillAsync(
	DataTable^ dataTable, 
	IDbCommand^ command, 
	CommandBehavior behavior
)
member FillAsync : 
        dataTable : DataTable * 
        command : IDbCommand * 
        behavior : CommandBehavior -> Task<int> 

Parameters

dataTable
Type: System.DataDataTable
DataTable to use
command
Type: System.DataIDbCommand
DbCommand to use
behavior
Type: System.DataCommandBehavior
Command Behavior

Return Value

Type: TaskInt32
int
See Also