ProfileGroupSettingsCollection.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 a ProfileGroupSettings object.
Overloads
Item[Int32] |
Gets or sets the ProfileGroupSettings object at the specified index location. |
Item[String] |
Gets or sets the ProfileGroupSettings object with the specified name. |
Item[Int32]
Gets or sets the ProfileGroupSettings object at the specified index location.
public:
property System::Web::Configuration::ProfileGroupSettings ^ default[int] { System::Web::Configuration::ProfileGroupSettings ^ get(int index); void set(int index, System::Web::Configuration::ProfileGroupSettings ^ value); };
public System.Web.Configuration.ProfileGroupSettings this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.ProfileGroupSettings with get, set
Default Public Property Item(index As Integer) As ProfileGroupSettings
Parameters
- index
- Int32
The index of a ProfileGroupSettings object in the collection.
Property Value
The ProfileGroupSettings object at the specified index, or null
if there is no object at that index.
See also
Applies to
Item[String]
Gets or sets the ProfileGroupSettings object with the specified name.
public:
property System::Web::Configuration::ProfileGroupSettings ^ default[System::String ^] { System::Web::Configuration::ProfileGroupSettings ^ get(System::String ^ name); };
public System.Web.Configuration.ProfileGroupSettings this[string name] { get; }
member this.Item(string) : System.Web.Configuration.ProfileGroupSettings
Default Public ReadOnly Property Item(name As String) As ProfileGroupSettings
Parameters
- name
- String
The name of a ProfileGroupSettings object in the collection.
Property Value
The ProfileGroupSettings object with the specified name, or null
if there is no object with that name.