Class ScpDownloadEventArgs
- Namespace
- Renci.SshNet.Common
- Assembly
- Renci.SshNet.dll
Provides data for the Downloading event.
public class ScpDownloadEventArgs : EventArgs
Inheritance
Inherited Members
Constructors
ScpDownloadEventArgs(string, long, long)
Initializes a new instance of the Renci.SshNet.Common.ScpDownloadEventArgs class.
public ScpDownloadEventArgs(string filename, long size, long downloaded)
Parameters
filename
string-
The downloaded filename.
size
long-
The downloaded file size.
downloaded
long-
The 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; }