System.Web.Profile.ProfileBase.this C# (CSharp) Method

this() public method

public this ( string propertyName ) : object
propertyName string
return object
		public override object this [string propertyName]
		{
			get
			{
				return GetPropertyValue (propertyName);
			}
			set
			{
				SetPropertyValue (propertyName, value);
			}
		}