Exemplo n.º 1
0
 public FTPCommandException(FTPReply reply)
     : base(reply.Message)
 {
     this.errorCode = reply.Code;
 }
Exemplo n.º 2
0
 public LogServerReplyEventArgs(FTPReply serverReply)
     : base()
 {
     this.ServerReply = serverReply;
 }
Exemplo n.º 3
0
 public FTPProtocolException(FTPReply reply)
     : base("Invalid FTP protocol reply: " + reply.ToString())
 {
     this.reply = reply;
 }