ProfileSettingsCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the specified ProfileSettings object.
Overloads
Item[Int32] |
Gets or sets the ProfileSettings object at the specified numeric index in the collection. |
Item[String] |
Gets the ProfileSettings object based on the specified key in the collection. |
Item[Int32]
Gets or sets the ProfileSettings object at the specified numeric index in the collection.
public:
property System::Web::Configuration::ProfileSettings ^ default[int] { System::Web::Configuration::ProfileSettings ^ get(int index); void set(int index, System::Web::Configuration::ProfileSettings ^ value); };
public System.Web.Configuration.ProfileSettings this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.ProfileSettings with get, set
Default Public Property Item(index As Integer) As ProfileSettings
Parameters
- index
- Int32
The index of a ProfileSettings object in the collection.
Property Value
The ProfileSettings object at the specified index, or null
if there is no object at that index.
Examples
The following code example shows how to use the Item[] method. This code example is part of a larger example provided for the HealthMonitoringSection class.
profileSetting = healthMonitoringSection.Profiles[i];
profileSetting = healthMonitoringSection.Profiles(i)
See also
Applies to
Item[String]
Gets the ProfileSettings object based on the specified key in the collection.
public:
property System::Web::Configuration::ProfileSettings ^ default[System::String ^] { System::Web::Configuration::ProfileSettings ^ get(System::String ^ key); };
public System.Web.Configuration.ProfileSettings this[string key] { get; }
member this.Item(string) : System.Web.Configuration.ProfileSettings
Default Public ReadOnly Property Item(key As String) As ProfileSettings
Parameters
- key
- String
The name of the ProfileSettings object contained in the collection.
Property Value
A ProfileSettings object.