Class ScpUploadEventArgs
- Namespace
- Renci.SshNet.Common
- Assembly
- Renci.SshNet.dll
Provides data for the Uploading event.
public class ScpUploadEventArgs : EventArgsInheritance
Inherited Members
Constructors
ScpUploadEventArgs(string, long, long)
Initializes a new instance of the Renci.SshNet.Common.ScpUploadEventArgs class.
public ScpUploadEventArgs(string filename, long size, long uploaded)Parameters
filenamestring-
The uploaded filename.
sizelong-
The uploaded file size.
uploadedlong-
The number of uploaded bytes so far.
Properties
Filename
Gets the uploaded filename.
public string Filename { get; }Property Value
Size
Gets the uploaded file size.
public long Size { get; }Property Value
Uploaded
Gets number of uploaded bytes so far.
public long Uploaded { get; }