ConfigurationElement コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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新しい要素を追加する必要があるたびに、 クラスの新しいインスタンスを作成します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET