From b5d07629e8a07bf652a57d2fb54853dd34163f0a Mon Sep 17 00:00:00 2001 From: Gert Driesen Date: Sun, 24 Sep 2017 11:49:41 +0200 Subject: [PATCH] Document exception for SendMessage. --- src/Renci.SshNet/Channels/ClientChannel.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Renci.SshNet/Channels/ClientChannel.cs b/src/Renci.SshNet/Channels/ClientChannel.cs index a33c3bc77..844c18660 100644 --- a/src/Renci.SshNet/Channels/ClientChannel.cs +++ b/src/Renci.SshNet/Channels/ClientChannel.cs @@ -52,6 +52,9 @@ protected virtual void OnOpenConfirmation(uint remoteChannelNumber, uint initial /// Send message to open a channel. /// /// Message to send + /// The client is not connected. + /// The operation timed out. + /// The size of the packet exceeds the maximum size defined by the protocol. protected void SendMessage(ChannelOpenMessage message) { Session.SendMessage(message);