Click or drag to resize

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: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public delegate void ProgressCallback(
	string fileName,
	int progressPercentage,
	long progressBytes
)

Parameters

fileName  String
The DFS file name to which the progress applies.
progressPercentage  Int32
The progress percentage, between 0 and 100.
progressBytes  Int64
The amount of bytes processed so far.
See Also