| ProgressCallback Delegate |
Delegate used by
DfsClient to report progress on various operations.
Namespace:
Ookii.Jumbo.Dfs
Assembly:
Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 2.0.0
Syntax public delegate void ProgressCallback(
string fileName,
int progressPercentage,
long progressBytes
)
Public Delegate Sub ProgressCallback (
fileName As String,
progressPercentage As Integer,
progressBytes As Long
)
public delegate void ProgressCallback(
String^ fileName,
int progressPercentage,
long long progressBytes
)
type ProgressCallback =
delegate of
fileName : string *
progressPercentage : int *
progressBytes : int64 -> unit
Parameters
- fileName
- Type: SystemString
The DFS file name to which the progress applies. - progressPercentage
- Type: SystemInt32
The progress percentage, between 0 and 100. - progressBytes
- Type: SystemInt64
The amount of bytes processed so far.
See Also