黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

WebSecurity IsAuthenticated 屬性

websecurity 屬性 - isauthenticated

websecurity 對(duì)象 websecurity 對(duì)象

定義

isauthenticated 屬性是一個(gè)布爾值,指示當(dāng)前用戶(hù)是否已通過(guò)身份驗(yàn)證(已登錄)。

如果當(dāng)前用戶(hù)已通過(guò)身份驗(yàn)證,則該屬性值是一個(gè)布爾值 true,否則是 false。

c# 和 vb 語(yǔ)法

websecurity.isauthenticated

實(shí)例

實(shí)例 c#

if (!websecurity.isauthenticated)
{
response.redirect("~/account/login");
}

實(shí)例 vb

if !websecurity.isauthenticated then
? response.redirect("~/account/login")
end if

備注

isauthenticated 屬性是只讀的。它不能通過(guò)代碼更改。

錯(cuò)誤和異常

在下面的情況下,任何對(duì) websecurity 對(duì)象的訪問(wèn)將拋出一個(gè) invalidoperationexception:

  • initializedatabaseconnection() 方法沒(méi)有被調(diào)用
  • simplemembership 沒(méi)有初始化(或者在網(wǎng)站配置中禁用)

技術(shù)數(shù)據(jù)

名稱(chēng)
namespace webmatrix.webdata
assembly webmatrix.webdata.dll

websecurity 對(duì)象 websecurity 對(duì)象
相關(guān)文章