using Renci.SshNet.Common;
using System;
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)
{
}
}
}