<PackageReference Include="SSH.NET" Version="2020.0.0" />

SftpMessage

abstract class SftpMessage : SshData
using Renci.SshNet.Common; using System; using Renci.SshNet.Common; using System; namespace Renci.SshNet.Sftp { public class SftpDownloadAsyncResult : AsyncResult { public bool IsDownloadCanceled { get; set; } public ulong DownloadedBytes { get; set; } public SftpDownloadAsyncResult(AsyncCallback asyncCallback, object state) : base(asyncCallback, state) { } internal void Update(ulong downloadedBytes) { DownloadedBytes = downloadedBytes; } } }