You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Network/FileTransfer/IFileServer.cs

12 lines
296 B

6 years ago
using System;
using ZeroLevel.Network;
5 years ago
namespace ZeroLevel.Network.FileTransfer
6 years ago
{
public interface IFileServer
: IDisposable
{
5 years ago
void Send(ISocketClient client, string fileName, Action<string> completeHandler = null, Action<string, string> errorHandler = null);
6 years ago
}
}

Powered by TurnKey Linux.