SSHChannelData Event
Fired when the SSHHost sends channel data to the client.
Syntax
[VB.NET] Public Event OnSSHChannelData As OnSSHChannelDataHandler
[C#] public event OnSSHChannelDataHandler OnSSHChannelData; public delegate void OnSSHChannelDataHandler(object sender, SshreversetunnelSSHChannelDataEventArgs e); class SshreversetunnelSSHChannelDataEventArgs : EventArgs { string ChannelId {get;} string ChannelData {get;} byte[] ChannelDataB {get;} }
Remarks
The SSHChannelData event will fire as data is received for the given ChannelId. ChannelData will contain the decrypted contents of the SSH packet.