ConfigurationElement Konstruktor

Definition

Initialisiert eine neue Instanz der ConfigurationElement-Klasse.

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

Beispiele

Das folgende Beispiel zeigt, wie sie einen benutzerdefinierten Konstruktor verwenden.

// 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

Hinweise

Sie erstellen eine neue instance der ConfigurationElement -Klasse, z. B. jedes Mal, wenn Ihre Anwendung der zugehörigen ConfigurationElementCollection Auflistung ein neues Element hinzufügen muss.

Gilt für: