C# Class Renci.SshNet.Common.ScpDownloadEventArgs

Provides data for the Downloading event.
Inheritance: System.EventArgs
显示文件 Open project: sshnet/SSH.NET Class Usage Examples

Public Methods

Method Description
ScpDownloadEventArgs ( string filename, long size, long downloaded ) : System

Initializes a new instance of the ScpDownloadEventArgs class.

Method Details

ScpDownloadEventArgs() public method

Initializes a new instance of the ScpDownloadEventArgs class.
public ScpDownloadEventArgs ( string filename, long size, long downloaded ) : System
filename string The downloaded filename.
size long The downloaded file size.
downloaded long The number of downloaded bytes so far.
return System