ConfigurationElement コンストラクター

定義

ConfigurationElement クラスの新しいインスタンスを初期化します。

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

次の例は、カスタマイズされたコンストラクターを使用する方法を示しています。

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

注釈

たとえば、アプリケーションが関連ConfigurationElementCollectionするコレクションにConfigurationElement新しい要素を追加する必要があるたびに、 クラスの新しいインスタンスを作成します。

適用対象