KeyValueConfigurationElement(String, String) Construtor
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicializa uma nova instância da classe KeyValueConfigurationElement com base nos parâmetros fornecidos.
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)
Parâmetros
- key
- String
A chave do KeyValueConfigurationElement.
- value
- String
O valor do KeyValueConfigurationElement.
Exemplos
O exemplo de código a seguir demonstra como usar o KeyValueConfigurationElement construtor . Este exemplo de código faz parte de um exemplo maior fornecido para a visão geral da KeyValueConfigurationCollection classe.
// Create the KeyValueConfigurationElement.
KeyValueConfigurationElement myAdminKeyVal =
new KeyValueConfigurationElement(
"myAdminTool", "admin.aspx");
' Create the KeyValueConfigurationElement.
Dim myAdminKeyVal As KeyValueConfigurationElement = _
New KeyValueConfigurationElement _
("myAdminTool", "admin.aspx")