Renci.SshNet.Common.AsyncResult<TResult>
Base class to encapsulates the results of an asynchronous operation that returns result.
namespace Renci.SshNet.Common
{
public abstract class AsyncResult<TResult> : AsyncResult
{
protected AsyncResult(AsyncCallback asyncCallback, object state);
public void SetAsCompleted(TResult result, bool completedSynchronously);
public new TResult EndInvoke();
}
}