gpt4 book ai didi

c# - 为什么 Context.User.Identity.Name 在 Windows Form Hub 上下文中为空?

转载 作者:行者123 更新时间:2023-12-04 16:31:41 25 4
gpt4 key购买 nike

我需要通过User.Identity.Name到 Windows 窗体客户端。

方法

public override Task OnConnected() {

string userName = Context.User.Identity.Name;
string connectionId = Context.ConnectionId;

var user = Users.GetOrAdd(userName, _ => new User {
Name = userName,
ConnectionIds = new HashSet<string>()
});

lock (user.ConnectionIds) {
user.ConnectionIds.Add(connectionId);
if (user.ConnectionIds.Count == 1) {
Clients.Others.userConnected(userName);
}
}
return base.OnConnected();
}

但是 Context.User.Identity.Name一片空白?为什么?如何解决?

最佳答案

连接到集线器时,您似乎正在尝试获取用户名。我通过从我的客户端传递用户名解决了一个类似的问题。听起来您也在使用 SignalR .NET 客户端。试试这个

客户

Connection = new HubConnection("http://.../", new Dictionary<string, string>
{
{ "UserName", WindowsIdentity.GetCurrent().Name }
});

集线器
public override Task OnConnected()
{
string userName = Context.QueryString["UserName"]
}

关于c# - 为什么 Context.User.Identity.Name 在 Windows Form Hub 上下文中为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22238951/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com