Renci.SshNet.ScpClient.SendData C# (CSharp) Method

SendData() private static method

private static SendData ( IChannel channel, byte buffer, int length ) : void
channel IChannel
buffer byte
length int
return void
        private static void SendData(IChannel channel, byte[] buffer, int length)
        {
            channel.SendData(buffer, 0, length);
        }

Same methods

ScpClient::SendData ( IChannel channel, byte buffer ) : void
ScpClient::SendData ( IChannel channel, string command ) : void