ProgressEventArgs Constructor (Int32, Int32, Int64, Int64) |
Create a progress event argument
Namespace:
FileHelpers.Events
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic ProgressEventArgs(
int currentRecord,
int totalRecords,
long currentBytes,
long totalBytes
)
Public Sub New (
currentRecord As Integer,
totalRecords As Integer,
currentBytes As Long,
totalBytes As Long
)
Parameters
- currentRecord
- Type: SystemInt32
Current record in file - totalRecords
- Type: SystemInt32
Total number of records in file - currentBytes
- Type: SystemInt64
Current position in bytes - totalBytes
- Type: SystemInt64
Total bytes in file
See Also