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