public override void stopFileSendOrRecvByHandle(int Handle)
 {
     ACE_FILE_SERVER_DLL.stopFileSendOrRecvByHandle(Handle);
 }
 public override int recvFileListByDateFramServer(string RemoteDirPath, string beginDate, string endDate)
 {
     return(ACE_FILE_SERVER_DLL.recvFileListByDateFramServer(this.IP, this.Port, RemoteDirPath, beginDate, endDate, OnFWndCallBack));
 }
 public override bool delFileFramServer(string RemoteFilePath)
 {
     return(ACE_FILE_SERVER_DLL.delFileFramServer(this.IP, this.Port, RemoteFilePath, OnFWndCallBack));
 }
 public override int recvFileListFramServer(string RemoteDirPath)
 {
     return(ACE_FILE_SERVER_DLL.recvFileListFramServer(this.IP, this.Port, RemoteDirPath, OnFWndCallBack));
 }
 public override int recvFileFramServer(string RemotefileNamePath, string LocalDirPath)
 {
     return(ACE_FILE_SERVER_DLL.recvFileFramServer(this.IP, this.Port, RemotefileNamePath, LocalDirPath, OnFWndCallBack));
 }
 public override int sendFileToServer(string LocalfileNamePath, string RemoteDirPath)
 {
     return(ACE_FILE_SERVER_DLL.sendFileToServer(this.IP, this.Port, LocalfileNamePath, RemoteDirPath, OnFWndCallBack));
 }
 public override int connectServer()
 {
     return(ACE_FILE_SERVER_DLL.getServerConnetedCount(this.IP, this.Port));
 }
 public override bool createDirFramServer(string RemoteDirPath)
 {
     return(ACE_FILE_SERVER_DLL.createDirFramServer(this.IP, this.Port, RemoteDirPath, OnFWndCallBack));
 }