isAuthenticated() public static method

public static isAuthenticated ( ) : bool
return bool
コード例 #1
0
 protected override bool AuthorizeCore(HttpContextBase httpContext)
 {
     if (Authorize.isAuthenticated())
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }