You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
642 B
C#

using Renci.SshNet.Common;
using System;
namespace Renci.SshNet
{
/// <summary>
/// Provides additional information for asynchronous command execution
/// </summary>
public class ExpectAsyncResult : AsyncResult<string>
{
/// <summary>
/// Initializes a new instance of the <see cref="ExpectAsyncResult" /> class.
/// </summary>
/// <param name="asyncCallback">The async callback.</param>
/// <param name="state">The state.</param>
internal ExpectAsyncResult(AsyncCallback asyncCallback, Object state)
: base(asyncCallback, state)
{
}
}
}