SendChannelData Method
Used to send regular data over an SSH channel.
Syntax
[VB.NET] Public Sub SendChannelData(ByVal ChannelId As Integer, ByVal Data As String)
[C#] public void SendChannelData(int channelId, byte[] data);
Remarks
This method can be used to send a arbitrary data to over the channel with the specified ChannelId.
NOTE: This method has a corresponding asynchronous version (SendChannelDataAsync) for use in the WinRT environment.