Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ FormatFtpCommand()

string System.Net.FtpControlStream.FormatFtpCommand ( string command,
string parameter )
inlineprivate

Definition at line 852 of file FtpControlStream.cs.

853 {
854 if (!string.IsNullOrEmpty(parameter))
855 {
856 return command + " " + parameter + "\r\n";
857 }
858 return command + "\r\n";
859 }

Referenced by System.Net.FtpControlStream.BuildCommandsList().