|
BulkDataOperationBaseOnRowProgress Method
|
Raise an event while change row in data processing
Namespace: GSF.DataAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax protected virtual void OnRowProgress(
string TableName,
int CurrentRow,
int TotalRows
)
Protected Overridable Sub OnRowProgress (
TableName As String,
CurrentRow As Integer,
TotalRows As Integer
)
protected:
virtual void OnRowProgress(
String^ TableName,
int CurrentRow,
int TotalRows
)
abstract OnRowProgress :
TableName : string *
CurrentRow : int *
TotalRows : int -> unit
override OnRowProgress :
TableName : string *
CurrentRow : int *
TotalRows : int -> unit
function OnRowProgress(TableName, CurrentRow, TotalRows);
View SourceParameters
- TableName String
- Table name in data processing
- CurrentRow Int32
- current row index in data processing
- TotalRows Int32
- total rows needs to be process in data processing
See Also