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

ExpectAsyncResult

public class ExpectAsyncResult : AsyncResult<string>
Provides additional information for asynchronous command execution
using Renci.SshNet.Common; using System; namespace Renci.SshNet { public class ExpectAsyncResult : AsyncResult<string> { internal ExpectAsyncResult(AsyncCallback asyncCallback, object state) : base(asyncCallback, state) { } } }