Add SendEof to IChannel.

This commit is contained in:
Gert Driesen
2014-11-26 18:15:10 +00:00
parent e0a795ee3a
commit 38d4f3d605
@@ -78,5 +78,11 @@ namespace Renci.SshNet.Channels
/// </summary>
/// <param name="data">The payload to send.</param>
void SendData(byte[] data);
/// <summary>
/// Sends a SSH_MSG_CHANNEL_EOF message to the remote server.
/// </summary>
/// <exception cref="InvalidOperationException">The channel is closed.</exception>
void SendEof();
}
}