KeyValueConfigurationElement(String, String) Konstruktor
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci KeyValueConfigurationElement třídy na základě zadaných parametrů.
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)
Parametry
- key
- String
Klíč pro KeyValueConfigurationElement.
- value
- String
Hodnota parametru KeyValueConfigurationElement.
Příklady
Následující příklad kódu ukazuje, jak použít KeyValueConfigurationElement konstruktor. Tento příklad kódu je součástí většího příkladu KeyValueConfigurationCollection , který je k dispozici pro přehled třídy.
// Create the KeyValueConfigurationElement.
KeyValueConfigurationElement myAdminKeyVal =
new KeyValueConfigurationElement(
"myAdminTool", "admin.aspx");
' Create the KeyValueConfigurationElement.
Dim myAdminKeyVal As KeyValueConfigurationElement = _
New KeyValueConfigurationElement _
("myAdminTool", "admin.aspx")