KeyValueConfigurationElement(String, String) Constructeur
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.
Initialise une nouvelle instance de la classe KeyValueConfigurationElement en fonction des paramètres fournis.
public:
KeyValueConfigurationElement(System::String ^ key, System::String ^ value);
public KeyValueConfigurationElement (string key, string value);
new System.Configuration.KeyValueConfigurationElement : string * string -> System.Configuration.KeyValueConfigurationElement
Public Sub New (key As String, value As String)
Paramètres
- key
- String
Clé de KeyValueConfigurationElement.
- value
- String
Valeur du KeyValueConfigurationElement.
Exemples
L’exemple de code suivant montre comment utiliser le KeyValueConfigurationElement constructeur. Cet exemple de code fait partie d’un exemple plus large fourni pour la vue d’ensemble de la KeyValueConfigurationCollection classe.
// Create the KeyValueConfigurationElement.
KeyValueConfigurationElement myAdminKeyVal =
new KeyValueConfigurationElement(
"myAdminTool", "admin.aspx");
' Create the KeyValueConfigurationElement.
Dim myAdminKeyVal As KeyValueConfigurationElement = _
New KeyValueConfigurationElement _
("myAdminTool", "admin.aspx")