Click or drag to resize

ApplicationLoadFlags Enumeration

Behavior flags for CreateInstance(String, String, String, Properties) and when creating an application via ContextFactory.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[FlagsAttribute]
public enum ApplicationLoadFlags
Members
  Member nameValueDescription
NoPageInfosLoad1Do not load the PageInfos collection.
NoNavigatorsLoad2Do not load the Navigators collection.
NoPerfmonObjectsLoad4Do not load the Navigators collection.
UseDeviceToken8The authToken should be considered a device token.
IsServiceApplication16 The application being loaded is a Service application.
PreAuthenticated32 The application is be loaded for a user who has been pre-authenticated. In such loads a successful authentication does not signify a login, but rather an instantiation of an IAppContext object for an already-logged-in user possibly rehydration following a .Net session timeout where an active, valid session token is still available.
NoPasswordValidate64 The user has already been authenticated and the application should ignore the password when authenticating. This option should be used with caution and is primarily intended for use with web services. See AuthenticationFlags.NoPasswordValidate.
See Also