以下のサンプルコードは、カスタムコマンド("START")をサーバーに送信して応答を調べる方法を示します。
Response response = ftp1.Send("START processA");
textBox1.Text = response.Command + ": " + response.Text;
Dim response As Response = ftp1.Send("START processA")
textBox1.Text = response.Command + ": " + response.Text