3 instantiations of ProfileGroupSettings
System.Web (3)
Configuration\ProfileGroupSettingsCollection.cs (2)
70return new ProfileGroupSettings(); 103ProfileGroupSettings deltaSettings = new ProfileGroupSettings();
Configuration\RootProfilePropertySettingsCollection.cs (1)
69newGroupSettings = new ProfileGroupSettings();
25 references to ProfileGroupSettings
System.Web (25)
Configuration\ProfileGroupSettings.cs (3)
52ProfileGroupSettings o = obj as ProfileGroupSettings; 80internal void InternalReset(ProfileGroupSettings parentSettings) {
Configuration\ProfileGroupSettingsCollection.cs (17)
18[ConfigurationCollection(typeof(ProfileGroupSettings), AddItemName = "group")] 46public new ProfileGroupSettings this[string name] { 48return (ProfileGroupSettings)BaseGet(name); 52public ProfileGroupSettings this[int index] { 54return (ProfileGroupSettings)BaseGet(index); 64internal void AddOrReplace(ProfileGroupSettings groupSettings) { 74return ((ProfileGroupSettings)element).Name; 101foreach (ProfileGroupSettings settings in source) { 102ProfileGroupSettings settingsFromParent = parent.Get(settings.Name); 103ProfileGroupSettings deltaSettings = new ProfileGroupSettings(); 120public void Add(ProfileGroupSettings group) { 124public ProfileGroupSettings Get(int index) { 125return (ProfileGroupSettings)BaseGet(index); 128public ProfileGroupSettings Get(string name) { 129return (ProfileGroupSettings)BaseGet(name); 136public void Set(ProfileGroupSettings group) { 140public int IndexOf(ProfileGroupSettings group) {
Configuration\ProfileSection.cs (1)
155foreach (ProfileGroupSettings pgs in PropertySettings.GroupSettings) {
Configuration\RootProfilePropertySettingsCollection.cs (2)
59ProfileGroupSettings newGroupSettings; 60ProfileGroupSettings curGroupSettings = null;
Profile\HttpProfileBase.cs (2)
299foreach (ProfileGroupSettings pgs in config.PropertySettings.GroupSettings) { 466foreach (ProfileGroupSettings pgs in config.PropertySettings.GroupSettings) {