ProfileBase.Item Property
Assembly: System.Web (in system.web.dll)
public: virtual property Object^ default [String^] { Object^ get (String^ propertyName) override; void set (String^ propertyName, Object^ value) override; }
/** @property */ public Object get_Item (String propertyName) /** @property */ public void set_Item (String propertyName, Object value)
Not applicable.
Parameters
- propertyName
The name of the profile property.
Property Value
The value of the specified profile property, typed as object.| Exception type | Condition |
|---|---|
| An attempt was made to set a property value on an anonymous profile where the property's allowAnonymous attribute is false. | |
| There are no properties defined for the current profile. -or- The specified profile property name does not exist in the current profile. -or- The provider for the specified profile property did not recognize the specified property. | |
| An attempt was made to set a property value that was marked as read-only. | |
| An attempt was made to assign a value to a property using an incompatible type. |
You can use this property to retrieve or set the property values of the user profile for your application by name. Returned values are typed as object and must be cast as the specific object type when retrieved. For strongly typed access to profile property values, you can access the property by name as a member of the Profile property available on each page, for example, Profile.CustomerAddress.
The following code example lists the names of the properties in the user profile by binding the Name property from the static Properties collection of SettingsProperty objects to a GridView control. The selected property value is retrieved by name using the Item collection. For an example of a Web.config file that specifies properties for the user profile, see the example provided for the ProfileBase class.
- AspNetHostingPermission for operating in a hosted environment. Demand value: LinkDemand; Permission value: Minimal.
- AspNetHostingPermission for operating in a hosted environment. Demand value: InheritanceDemand; Permission value: Minimal.
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.