| 1234567891011121314151617181920212223242526 | using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests.Classes.Messages.Connection{    /// <summary>    /// Represents SSH_MSG_CHANNEL_CLOSE message.    /// </summary>    public class ChannelCloseMessageTest : TestBase    {        /// <summary>        /// Initializes a new instance of the <see cref="ChannelCloseMessage"/> class.        /// </summary>        //public ChannelCloseMessage()        //{        //}        ///// <summary>        ///// Initializes a new instance of the <see cref="ChannelCloseMessage"/> class.        ///// </summary>        ///// <param name="localChannelNumber">The local channel number.</param>        //public ChannelCloseMessage(uint localChannelNumber)        //{        //    LocalChannelNumber = localChannelNumber;        //}    }}
 |