using System; using Renci.SshNet.Common; namespace Renci.SshNet { /// /// Provides additional information for asynchronous command execution. /// public class ExpectAsyncResult : AsyncResult { /// /// Initializes a new instance of the class. /// /// The async callback. /// The state. internal ExpectAsyncResult(AsyncCallback asyncCallback, object state) : base(asyncCallback, state) { } } }