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