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

CommandAsyncResult

Provides additional information for asynchronous command execution
using System; using System.Threading; namespace Renci.SshNet { public class CommandAsyncResult : IAsyncResult { public int BytesReceived { get; set; } public int BytesSent { get; set; } public object AsyncState { get; set; } public WaitHandle AsyncWaitHandle { get; set; } public bool CompletedSynchronously { get; set; } public bool IsCompleted { get; set; } internal bool EndCalled { get; set; } internal CommandAsyncResult() { } } }