예제 #1
0
파일: MyServer.cs 프로젝트: jbdk/JsonRpcLib
        private Task OnConnection(SocketConnection connection)
        {
            IClient client = AttachClient(connection.GetRemoteIp(), connection);

            ClientConnected.Set();
            return(_tcs.Task);
        }