RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
WebFact.TWebPageAccessFlags Enumeration

TWebPageAccessFlags and TWebPageAccess determine what conditions must be met for a user to access the page that a Web Page module produces.

Pascal
TWebPageAccessFlags = (
  wpPublished,
  wpLoginRequired
);
C++
enum TWebPageAccessFlags {
  wpPublished,
  wpLoginRequired
};

TWebPageAccessFlags are flags that signal limitations on how users can access a Web page that a Web page module produces. TWebPageAccess is a set of zero or more TWebPageAccessFlags values. The following table lists the possible flags:

Flag 
Meaning 
wpPublished  
The Web page module is automatically called in response to HTTP request messages that specify the Web page name as the pathinfo portion of their target URL. When included, the value of the IsPublished property is true. When not included, IsPublished is false.  
wpLoginRequired  
Users must log in before they can access the associated Web page. When included, the value of the IsLoginRequired property is true. When not included, IsLoginRequired is false.  

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!