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