我正在尝试像这样使用 Azure SignalR 向特定用户发送消息
await this.hubContext.Clients.User(UserId).SendAsync("NotifyUser", "message");
根据https://docs.microsoft.com/en-us/aspnet/core/signalr/groups?view=aspnetcore-3.0 默认情况下 Signalr 使用 ClaimTypes.NameIdentifier 来识别用户。
我可以更改此默认设置以改用 ClaimTypes.EmailClaim 吗?这是可配置的吗?