gpt4 book ai didi

c# - HttpContext.Current.User.Identity.Name 如何知道存在哪些用户名?

转载 作者:IT王子 更新时间:2023-10-29 04:04:16 27 4
gpt4 key购买 nike

这不一定是个问题,我只是好奇它是如何工作的。我有一个方法:

public static bool UserIsAuthenticated()
{
bool isAuthed = false;
try
{
if (HttpContext.Current.User.Identity.Name != null)
{
if (HttpContext.Current.User.Identity.Name.Length != 0)
{
FormsIdentity id = (FormsIdentity)HttpContext.Current.User.Identity;
FormsAuthenticationTicket ticket = id.Ticket;
isAuthed = true;
string MyUserData = ticket.UserData;
}
}
}
catch { } // not authed
return isAuthed;
}

如果用户不存在,HttpContext.Current.User.Identity.Name 返回null,但它如何知道哪些用户名存在或不存在?

最佳答案

Windows 身份验证

选择您的项目。

按 F4

禁用“匿名身份验证”并启用“Windows 身份验证”

enter image description here

关于c# - HttpContext.Current.User.Identity.Name 如何知道存在哪些用户名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21117617/

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