ConfigurationElement Constructor

Definition

Initializes a new instance of the ConfigurationElement class.

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

Examples

The following example shows how to use a customized constructor.

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

Remarks

You create a new instance of the ConfigurationElement class, for example, every time your application needs to add a new element to the related ConfigurationElementCollection collection.

Applies to