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