ProfileSettingsCollection.Item[] Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l'objet ProfileSettings spécifié.
Surcharges
Item[Int32] |
Obtient ou définit l'objet ProfileSettings à l'index numérique spécifié dans la collection. |
Item[String] |
Obtient l'objet ProfileSettings, à partir de la clé spécifiée dans la collection. |
Item[Int32]
Obtient ou définit l'objet ProfileSettings à l'index numérique spécifié dans la 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
Paramètres
- index
- Int32
Index d'un objet ProfileSettings dans la collection.
Valeur de propriété
Objet ProfileSettings au niveau d'index spécifié ou null
s'il n'existe aucun objet à ce niveau.
Exemples
L'exemple de code suivant montre comment utiliser la méthode Item[]. Cet exemple de code fait partie d’un exemple plus grand fourni pour la HealthMonitoringSection classe.
profileSetting = healthMonitoringSection.Profiles[i];
profileSetting = healthMonitoringSection.Profiles(i)
Voir aussi
S’applique à
Item[String]
Obtient l'objet ProfileSettings, à partir de la clé spécifiée dans la 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
Paramètres
- key
- String
Nom de l'objet ProfileSettings contenu dans la collection.
Valeur de propriété
Objet ProfileSettings.