Base:
property
this
System.Configuration.SettingsBase.this[System.String]
5 writes to
System.Web (3)
Profile\HttpProfileBase.cs (1)
83public void SetPropertyValue(string propertyName, object propertyValue) { this[propertyName] = propertyValue; }
Profile\HttpProfileGroupBase.cs (2)
25public object this[string propertyName] { get { return _Parent[_MyName + propertyName];} set { _Parent[_MyName + propertyName] = value; } } 33_Parent[_MyName + propertyName] = propertyValue;
System.Web.Extensions (2)
ApplicationServices\ProfileService.cs (1)
214pb[propertyName] = kvp.Value;
Profile\ProfileService.cs (1)
104profile[propertyName] = convertedValue;
7 references to
System.Web (4)
ModelBinding\ProfileValueProvider.cs (1)
21value = ModelBindingExecutionContext.HttpContext.Profile[key];
Profile\HttpProfileBase.cs (1)
81public object GetPropertyValue(string propertyName) { return this[propertyName]; }
Profile\HttpProfileGroupBase.cs (2)
25public object this[string propertyName] { get { return _Parent[_MyName + propertyName];} set { _Parent[_MyName + propertyName] = value; } } 29return _Parent[_MyName + propertyName];
System.Web.Extensions (3)
Profile\ProfileService.cs (2)
59dictionary.Add(propertyName, profile[propertyName]); 69dictionary.Add(propertyName, profile[propertyName]);
UI\ProfileServiceManager.cs (1)
208containingObject[propertyName] = profile == null ? null : profile[fullPropertyName];