SignalR解析调用hub方法

时间:2017-07-19 05:52:53

标签: c# signalr

我有signalR Hub:

    public class ServerHub : Hub
    {
        public void AnnounceIncomingCall(string name, string message)
        {
            return;
        }

        public bool ExecuteCall(Guid callId, int from, int to)
        {
            return false;
        }
    }

有没有办法解决调用远程方法Client的{​​{1}} / Connection?我想在此方法中执行此操作,以回答已广播该呼叫的ExecuteCall的详细信息。

我正在寻找类似Client的内容?

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

您可以使用Clients.Caller属性来获取调用客户端。有关更多信息,请参阅IHubCallerConnectionContext.Caller文档。