namespace Renci.SshNet.Messages.Connection { /// /// Represents "keepalive@openssh.com" type channel request information /// public class KeepAliveRequestInfo : RequestInfo { /// /// Channel request name /// public const string Name = "keepalive@openssh.com"; /// /// Gets the name of the request. /// /// /// The name of the request. /// public override string RequestName { get { return Name; } } /// /// Initializes a new instance of the class. /// public KeepAliveRequestInfo() { WantReply = false; } } }