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