精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

WebSecurity HasUserId 屬性

websecurity 屬性 - hasuserid

websecurity 對象 websecurity 對象

定義

hasuserid 屬性是一個布爾值,指示當前用戶在 websecurity 數據庫中是否具有用戶 id。

如果當前用戶具有用戶 id,則該屬性值是一個布爾值 true。默認是 false。

c# 和 vb 語法

websecurity.hasuserid

實例

實例 c#

@{
bool value;
value=websecurity.hasuserid;
}
<p>it is @value that the user has an id</p>

實例 vb

@code
dim value as boolean
value=websecurity.hasuserid
end code

<p>it is @value that the user has an id</p>

備注

hasuserid 屬性是只讀的。它不能通過代碼更改。

hasuserid 屬性只驗證用戶是否在 websecurity 數據庫中具有 id。不驗證用戶帳戶是否有效(被確認),或者用戶是否已登錄。

請使用 isconfirmed() 方法來驗證用戶是否已被確認。

請使用 isauthenticated 屬性來驗證用戶是否已登錄。

錯誤和異常

在下面的情況下,任何對 websecurity 對象的訪問將拋出一個 invalidoperationexception:

  • initializedatabaseconnection() 方法沒有被調用
  • simplemembership 沒有初始化(或者在網站配置中禁用)

技術數據

名稱
namespace webmatrix.webdata
assembly webmatrix.webdata.dll

websecurity 對象 websecurity 對象
相關文章