1 instantiation of ProfilePropertySettings
System.Web (1)
Configuration\ProfilePropertySettingsCollection.cs (1)
89return new ProfilePropertySettings();
19 references to ProfilePropertySettings
System.Web (19)
Configuration\ProfilePropertySettingsCollection.cs (13)
18[ConfigurationCollection(typeof(ProfilePropertySettings))] 70public new ProfilePropertySettings this[string name] { 72return (ProfilePropertySettings)BaseGet(name); 76public ProfilePropertySettings this[int index] { 78return (ProfilePropertySettings)BaseGet(index); 93return ((ProfilePropertySettings)element).Name; 96public void Add(ProfilePropertySettings propertySettings) { 100public ProfilePropertySettings Get(int index) { 101return (ProfilePropertySettings)BaseGet(index); 104public ProfilePropertySettings Get(string name) { 105return (ProfilePropertySettings)BaseGet(name); 120public void Set(ProfilePropertySettings propertySettings) { 124public int IndexOf(ProfilePropertySettings propertySettings) {
Configuration\ProfileSection.cs (1)
167foreach (ProfilePropertySettings pps in settings) {
Configuration\RootProfilePropertySettingsCollection.cs (1)
22[ConfigurationCollection(typeof(ProfilePropertySettings))]
Profile\HttpProfileBase.cs (3)
325foreach (ProfilePropertySettings pps in propertyCollection) { 489foreach (ProfilePropertySettings pps in settingsCollection) { 531static private void SetProviderForProperty(ProfilePropertySettings pps) {
Profile\ProfileManager.cs (1)
37public static void AddDynamicProfileProperty(ProfilePropertySettings property) {