Class ScpDownloadEventArgs
Provides data for the Downloading event.
public class ScpDownloadEventArgs : EventArgs
- Inheritance
-
ScpDownloadEventArgs
- Inherited Members
Constructors
ScpDownloadEventArgs(string, long, long)
Initializes a new instance of the ScpDownloadEventArgs class.
public ScpDownloadEventArgs(string filename, long size, long downloaded)
Parameters
filename
stringThe downloaded filename.
size
longThe downloaded file size.
downloaded
longThe number of downloaded bytes so far.
Properties
Downloaded
Gets number of downloaded bytes so far.
public long Downloaded { get; }
Property Value
Filename
Gets the downloaded filename.
public string Filename { get; }
Property Value
Size
Gets the downloaded file size.
public long Size { get; }