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 e0a795e commit 38d4f3dCopy full SHA for 38d4f3d
Renci.SshClient/Renci.SshNet/Channels/IChannel.cs
@@ -78,5 +78,11 @@ internal interface IChannel : IDisposable
78
/// </summary>
79
/// <param name="data">The payload to send.</param>
80
void SendData(byte[] data);
81
+
82
+ /// <summary>
83
+ /// Sends a SSH_MSG_CHANNEL_EOF message to the remote server.
84
+ /// </summary>
85
+ /// <exception cref="InvalidOperationException">The channel is closed.</exception>
86
+ void SendEof();
87
}
88
0 commit comments