ProfileSettingsCollection.Item[] Eigenschaft

Definition

Ruft das angegebene ProfileSettings-Objekt ab oder legt dieses fest.

Überlädt

Item[Int32]

Ruft das ProfileSettings-Objekt am angegebenen numerischen Index in der Auflistung ab oder legt dieses fest.

Item[String]

Ruft das ProfileSettings-Objekt auf Grundlage des angegebenen Schlüssels in der Auflistung ab.

Item[Int32]

Ruft das ProfileSettings-Objekt am angegebenen numerischen Index in der Auflistung ab oder legt dieses fest.

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

Parameter

index
Int32

Der Index eines ProfileSettings-Objekts in der Auflistung.

Eigenschaftswert

Das ProfileSettings-Objekt am angegebenen Index oder null, wenn an diesem Index kein Objekt vorhanden ist.

Beispiele

Im folgenden Codebeispiel wird die Verwendung der Item[]-Methode veranschaulicht. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die HealthMonitoringSection-Klasse bereitgestellt wird.

profileSetting = healthMonitoringSection.Profiles[i];
profileSetting = healthMonitoringSection.Profiles(i)

Weitere Informationen

Gilt für:

Item[String]

Ruft das ProfileSettings-Objekt auf Grundlage des angegebenen Schlüssels in der Auflistung ab.

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

Parameter

key
String

Der Name des in der Auflistung enthaltenen ProfileSettings-Objekts.

Eigenschaftswert

Ein ProfileSettings-Objekt.

Gilt für: