コード例 #1
0
ファイル: ProtocolInterpreter.cs プロジェクト: voi/simple-ftp
 public string Send(ReplyCode reply, string addMessage)
 {
     return(this.Send(String.Format("{0} {1}", reply.Code.ToString(), addMessage)));
 }
コード例 #2
0
ファイル: ProtocolInterpreter.cs プロジェクト: voi/simple-ftp
 public string Send(ReplyCode reply)
 {
     return(this.Send(reply.ToString()));
 }