1 type derived from ProfileBase
System.Web (1)
Profile\DefaultHttpProfile.cs (1)
16public class DefaultProfile : ProfileBase
53 references to ProfileBase
System.Web (34)
Abstractions\HttpContextBase.cs (1)
158public virtual ProfileBase Profile {
Abstractions\HttpContextWrapper.cs (1)
163public override ProfileBase Profile {
Compilation\BaseCodeDomTreeGenerator.cs (1)
510string typeName = ProfileBase.GetProfileClassName();
Compilation\ProfileBuildProvider.cs (5)
52if (ProfileBase.GetPropertiesForCompilation().Count == 0 && !ProfileBase.InheritsFromCustomType && ProfileManager.DynamicProfileProperties.Count == 0) { 89Hashtable properties = ProfileBase.GetPropertiesForCompilation(); 92Type baseType = Type.GetType(ProfileBase.InheritsFromTypeString, false); 114type.BaseTypes.Add(new CodeTypeReference(ProfileBase.InheritsFromTypeString));
HttpContext.cs (3)
81internal ProfileBase _Profile; 1275public ProfileBase Profile { 1278_Profile = ProfileBase.Create(Request.IsAuthenticated ? User.Identity.Name : Request.AnonymousID, Request.IsAuthenticated);
Profile\HttpProfileBase.cs (16)
178static public ProfileBase Create(string username) { 183static public ProfileBase Create(string username, bool isAuthenticated) { 226if (!typeof(ProfileBase).IsAssignableFrom(t)) { 235string defaultType = typeof(ProfileBase).ToString(); 250if (!typeof(ProfileBase).IsAssignableFrom(t)) 270if (t == null || t != typeof(ProfileBase)) 279internal static ProfileBase SingletonInstance { get { return s_SingletonInstance; } } 359static private ProfileBase CreateMyInstance(string username, bool isAuthenticated) { 365ProfileBase hbc = (ProfileBase)Activator.CreateInstance(t); 390Type baseType = ProfileBase.InheritsFromType; 396ProfileBase.AddPropertySettingsFromConfig(baseType, fAnonEnabled, hasLowTrust, ProfileManager.DynamicProfileProperties, null); 400if (baseType != typeof(ProfileBase)) { 403PropertyInfo[] baseProps = typeof(ProfileBase).GetProperties(); 491if (baseType != typeof(ProfileBase) && s_Properties[name] != null) 659private static ProfileBase s_SingletonInstance = null;
Profile\HttpProfileGroupBase.cs (2)
45public void Init(ProfileBase parent, string myName) { 52private ProfileBase _Parent;
Profile\ProfileEventArgs.cs (2)
33public ProfileBase Profile { get { return _Profile; } set { _Profile = value; } } 34private ProfileBase _Profile;
Profile\ProfileModule.cs (1)
138if (context._Profile == null || (object)context._Profile == (object)ProfileBase.SingletonInstance)
WebSockets\AspNetWebSocketContext.cs (1)
123public virtual ProfileBase Profile {
WebSockets\AspNetWebSocketContextImpl.cs (1)
173public override ProfileBase Profile {
System.Web.Extensions (19)
ApplicationServices\ApplicationServiceHelper.cs (2)
172if (ProfileBase.Properties == null) { 178foreach (SettingsProperty property in ProfileBase.Properties) {
ApplicationServices\KnownTypesProvider.cs (3)
18if (ProfileBase.Properties == null) 20Type[] retArray = new Type[ProfileBase.Properties.Count]; 22foreach (SettingsProperty property in ProfileBase.Properties)
ApplicationServices\ProfileService.cs (8)
75ProfileBase pb = null; 126ProfileBase pb = GetProfileForCurrentUser(authenticatedUserOnly); 174ProfileBase pb = GetProfileForCurrentUser(authenticatedUserOnly); 195SettingsProperty settingProperty = ProfileBase.Properties[propertyName]; 263private static SettingsPropertyValue GetPropertyValue(ProfileBase pb, string name) { 264SettingsProperty prop = ProfileBase.Properties[name]; 283private static ProfileBase GetProfileForCurrentUser(bool authenticatedUserOnly) { 309return ProfileBase.Create(name, isAuthenticated);
Profile\ProfileService.cs (3)
36ProfileBase profile = context.Profile; 86ProfileBase profile = context.Profile; 96SettingsProperty settingProperty = ProfileBase.Properties[propertyName];
UI\ProfileServiceManager.cs (3)
135ProfileBase profile = context.Profile; 165ProfileBase profile, 202bool exists = ProfileBase.Properties[fullPropertyName] != null;