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

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) { } } }