gpt4 book ai didi

c# - HttpContext.Current.User 和 this.User.Identity 之间的区别

转载 作者:太空宇宙 更新时间:2023-11-03 19:57:00 27 4
gpt4 key购买 nike

HttpContext.Current.User.Identity.IsAuthenticatedthis.User.Identity.IsAuthenticated 有什么区别?有时它们会出现在我的代码中,有时它们不会(所以我必须使用另一个)。它们的意思是一样的还是应该有一种特定的“上下文”供我使用它们?

我在我的一个类(class)中使用了这段代码:

if (!HttpContext.Current.User.Identity.IsAuthenticated) {

return 0;

}

thisHttpContext 是什么?我知道 this 指的是一个特定的实例,但是 HttpContext 呢?

最佳答案

HttpContext.Current.User.Identity.IsAuthenticatedthis.User.Identity.IsUthenticated 是同一件事,但用法不同。

你用 this.User.Identity.IsUthenticated 在 Controller 中但是如果您是外部 Controller 并且您需要知道用户是否经过身份验证,您可以使用 HttpContext.Current.User.Identity.IsAuthenticated

关于c# - HttpContext.Current.User 和 this.User.Identity 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32491770/

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