Table of Contents

Class ScpUploadEventArgs

Namespace
Renci.SshNet.Common
Assembly
Renci.SshNet.dll

Provides data for the Uploading event.

public class ScpUploadEventArgs : EventArgs

Inheritance

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

filename string

The uploaded filename.

size long

The uploaded file size.

uploaded long

The number of uploaded bytes so far.

Properties

Filename

Gets the uploaded filename.

public string Filename { get; }

Property Value

string

Size

Gets the uploaded file size.

public long Size { get; }

Property Value

long

Uploaded

Gets number of uploaded bytes so far.

public long Uploaded { get; }

Property Value

long