1 Star 0 Fork 8

zilin_zhang/fnsync

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
FileSend.cs 1.67 KB
一键复制 编辑 原始数据 按行查看 历史
holmium 提交于 2021-04-20 21:25 . Minor Improvements
using FnSync.FileTransmission;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FnSync
{
class FileSend : BaseModule<FileSend.SendEntry>
{
public class SendEntry : BaseEntry
{
}
private string DestRemoteFolder = null;
public override string DestinationFolder
{
get{
return DestRemoteFolder;
}
set {
DestRemoteFolder = value.AppendIfNotEnding("/");
}
}
public override event EventHandler OnErrorEvent;
protected override Task<bool> DetermineFileExistence(SendEntry entry)
{
throw new NotImplementedException();
}
protected override void FileFailedCleanUpAction(SendEntry entry)
{
throw new NotImplementedException();
}
protected override void FileTransmitSuccessAction(SendEntry entry)
{
throw new NotImplementedException();
}
protected override Task OnDisconnected()
{
throw new NotImplementedException();
}
protected override Task OnReconnected()
{
throw new NotImplementedException();
}
protected override void ResetCurrentFileTransmisionAction(SendEntry entry)
{
throw new NotImplementedException();
}
protected override Task Transmit(SendEntry entry, FileAlreadyExistEventArgs.Measure Measure)
{
throw new NotImplementedException();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/zilin__zhang/fnsync.git
git@gitee.com:zilin__zhang/fnsync.git
zilin__zhang
fnsync
fnsync
master

搜索帮助