ConfigurationElement Constructor

Definición

Inicializa una nueva instancia de la clase ConfigurationElement.

protected:
 ConfigurationElement();
protected ConfigurationElement ();
Protected Sub New ()

Ejemplos

En el ejemplo siguiente se muestra cómo usar un constructor personalizado.

// Constructor allowing name, url, and port to be specified.
public UrlConfigElement(String newName,
    String newUrl, int newPort)
{
    Name = newName;
    Url = newUrl;
    Port = newPort;
}
' Constructor allowing name, url, and port to be specified.
Public Sub New(ByVal newName As String, _
    ByVal newUrl As String, _
    ByVal newPort As Integer)

    Name = newName
    Url = newUrl
    Port = newPort

End Sub

Comentarios

Cree una nueva instancia de la ConfigurationElement clase , por ejemplo, cada vez que la aplicación necesite agregar un nuevo elemento a la colección relacionada ConfigurationElementCollection .

Se aplica a