<WebSecurity Objeto
Definição
A propriedade IsAuthenticated é um valor booleano que indica se o usuário atual é autenticado (logged in) .
O valor da propriedade é um boolean true se o usuário atual é autenticado, caso contrário false.
C # e VB sintaxe
WebSecurity.IsAuthenticated
Exemplos
Exemplo C #
if (!WebSecurity.IsAuthenticated)
{
Response.Redirect("~/Account/Login");
}
exemplo VB
if !WebSecurity.IsAuthenticated then
Response.Redirect("~/Account/Login")
end if
Observações
A propriedade IsAuthenticated é somente leitura. Ele não pode ser alterado por código.
Erros e Exceções
Qualquer acesso ao objeto WebSecurity lança um InvalidOperationException se:
- O InitializeDatabaseConnection() método não foi chamado
- SimpleMembership não é inicializado (or disabled in the website configuration)
Dados técnicos
Nome | Valor |
---|---|
namespace | WebMatrix.WebData |
Montagem | WebMatrix.WebData.dll |
<WebSecurity Objeto