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