mirror of
https://github.com/RRQM/TouchSocket.git
synced 2025-12-19 01:46:44 +08:00
19 lines
469 B
C#
19 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TouchSocket.Rpc.TouchRpc;
|
|
|
|
namespace FileClientGUI
|
|
{
|
|
internal class MyPlugin : TouchRpcPluginBase<TcpTouchRpcClient>
|
|
{
|
|
protected override void OnFileTransfering(TcpTouchRpcClient client, FileOperationEventArgs e)
|
|
{
|
|
e.IsPermitOperation = true;
|
|
base.OnFileTransfering(client, e);
|
|
}
|
|
}
|
|
}
|