We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b23d11 commit b5d0762Copy full SHA for b5d0762
1 file changed
src/Renci.SshNet/Channels/ClientChannel.cs
@@ -52,6 +52,9 @@ protected virtual void OnOpenConfirmation(uint remoteChannelNumber, uint initial
52
/// Send message to open a channel.
53
/// </summary>
54
/// <param name="message">Message to send</param>
55
+ /// <exception cref="SshConnectionException">The client is not connected.</exception>
56
+ /// <exception cref="SshOperationTimeoutException">The operation timed out.</exception>
57
+ /// <exception cref="InvalidOperationException">The size of the packet exceeds the maximum size defined by the protocol.</exception>
58
protected void SendMessage(ChannelOpenMessage message)
59
{
60
Session.SendMessage(message);
0 commit comments