41 references to ApplicationServiceHelper
System.Web.Extensions (41)
ApplicationServices\AuthenticationService.cs (4)
101ApplicationServiceHelper.EnsureAuthenticationServiceEnabled(HttpContext.Current, true); 116ApplicationServiceHelper.EnsureAuthenticationServiceEnabled(HttpContext.Current, true); 125ApplicationServiceHelper.EnsureAuthenticationServiceEnabled(HttpContext.Current, true); 134ApplicationServiceHelper.EnsureAuthenticationServiceEnabled(HttpContext.Current, false);
ApplicationServices\ProfileService.cs (12)
68ApplicationServiceHelper.EnsureProfileServiceEnabled(); 70ApplicationServiceHelper.EnsureAuthenticated(HttpContext.Current); 87Dictionary<string, object> allowedGet = ApplicationServiceHelper.ProfileAllowedGet; 118ApplicationServiceHelper.EnsureProfileServiceEnabled(); 120ApplicationServiceHelper.EnsureAuthenticated(HttpContext.Current); 131Dictionary<string, object> allowedGet = ApplicationServiceHelper.ProfileAllowedGet; 162ApplicationServiceHelper.EnsureProfileServiceEnabled(); 165ApplicationServiceHelper.EnsureAuthenticated(HttpContext.Current); 173Dictionary<string, object> allowedSet = ApplicationServiceHelper.ProfileAllowedSet; 242ApplicationServiceHelper.EnsureProfileServiceEnabled(); 247Collection<ProfilePropertyMetadata> metadatas = ApplicationServiceHelper.GetProfilePropertiesMetadata(); 285IPrincipal user = ApplicationServiceHelper.GetCurrentUser(context);
ApplicationServices\RoleService.cs (6)
67ApplicationServiceHelper.EnsureRoleServiceEnabled(); 70IPrincipal user = ApplicationServiceHelper.GetCurrentUser(HttpContext.Current); 71string username = ApplicationServiceHelper.GetUserName(user); 89ApplicationServiceHelper.EnsureRoleServiceEnabled(); 92IPrincipal user = ApplicationServiceHelper.GetCurrentUser(HttpContext.Current); 93string username = ApplicationServiceHelper.GetUserName(user);
Handlers\ScriptModule.cs (1)
40if(!ApplicationServiceHelper.AuthenticationServiceEnabled || !RestHandlerFactory.IsRestRequest(context)) {
Profile\ProfileService.cs (10)
42Dictionary<string, object> allowedGet = ApplicationServiceHelper.ProfileAllowedGet; 87Dictionary<string, object> allowedSet = ApplicationServiceHelper.ProfileAllowedSet; 133ApplicationServiceHelper.EnsureProfileServiceEnabled(); 137ApplicationServiceHelper.EnsureAuthenticated(context); 145ApplicationServiceHelper.EnsureProfileServiceEnabled(); 149ApplicationServiceHelper.EnsureAuthenticated(context); 157ApplicationServiceHelper.EnsureProfileServiceEnabled(); 158return ApplicationServiceHelper.GetProfilePropertiesMetadata(); 163ApplicationServiceHelper.EnsureProfileServiceEnabled(); 167ApplicationServiceHelper.EnsureAuthenticated(context);
Security\AuthenticationService.cs (3)
16ApplicationServiceHelper.EnsureAuthenticationServiceEnabled(HttpContext.Current, true); 31ApplicationServiceHelper.EnsureAuthenticationServiceEnabled(HttpContext.Current, false); 36ApplicationServiceHelper.EnsureAuthenticationServiceEnabled(HttpContext.Current, false);
Security\RoleService.cs (2)
17ApplicationServiceHelper.EnsureRoleServiceEnabled(); 27ApplicationServiceHelper.EnsureRoleServiceEnabled();
UI\AuthenticationServiceManager.cs (1)
57bool authEnabled = ApplicationServiceHelper.AuthenticationServiceEnabled;
UI\ProfileServiceManager.cs (1)
84if (ApplicationServiceHelper.ProfileServiceEnabled) {
UI\RoleServiceManager.cs (1)
67bool enabled = ApplicationServiceHelper.RoleServiceEnabled;