我正在尝试创建一个接受 TcpClient 连接并在连接客户端后执行任务“ConnectedAction”的方法。尝试创建新任务以运行委托“ConnectedAction”时收到编译错误。
参数 1:无法从 'void' 转换为 'System.Func'
我相信这个错误是因为该方法试图运行“ConnectedAction”方法并将 void 返回给 Task.Run 参数。
如何让任务运行“ConnectedAction”委托?
class Listener
{
public IPEndPoint ListenerEndPoint {get; private set;}
public int TotalAttemptedConnections { get; private set; }
public Action<TcpClient> ConnectedAction { get; private set; }
public Listener(IPEndPoint listenerEndPoint, Action<TcpClient> connectedAction)
{
ConnectedAction = connectedAction;
ListenerEndPoint = listenerEndPoint;
Task.Factory.StartNew(Listen, TaskCreationOptions.LongRunning);
}
private void Listen()
{
TcpListener tcpListener = new TcpListener(ListenerEndPoint);
tcpListener.Start();
while (true)
{
TcpClient tcpClient = tcpListener.AcceptTcpClient();
TotalAttemptedConnections++;
//Error here
Task.Run(ConnectedAction(tcpClient));
}
}
}