ConfigurationPropertyCollection クラス
アセンブリ: System.Configuration (system.configuration.dll 内)


ConfigurationPropertyCollection クラスは、構成要素の属性または ConfigurationElement オブジェクトとなる、ConfigurationProperty オブジェクトのコレクションを表します。
ConfigurationProperty クラスは、個々の構成設定を表します。このクラスを使用すると、特定の構成エンティティ (属性または要素) の名前、型、および既定値の取得または設定を行うことができます。追加オプションを使用すると、属性が必須かどうか、属性が要素キーであるかどうか、または属性が既定の要素コレクションを表すかどうかを指定できます。

ConfigurationPropertyCollection の使用例を次に示します。関連する型である ConfigurationProperty の例を参照してください。
' Return the initialized property bag ' for the configuration element. ' The collection (property bag) that contains ' the properties is declared as: ' ConfigurationPropertyCollection _Properties; Protected Overrides ReadOnly Property Properties() _ As ConfigurationPropertyCollection Get Return _Properties End Get End Property
// Return the initialized property bag // for the configuration element. // The collection (property bag) that contains // the properties is declared as: // ConfigurationPropertyCollection _Properties; protected override ConfigurationPropertyCollection Properties { get { return _Properties; } }
<?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <section name="CustomSection" type="Samples.AspNet, ConfigurationProperty, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" allowDefinition="Everywhere" allowExeDefinition="MachineToApplication" restartOnExternalChanges="true" /> </configSections> <CustomSection fileName="default.txt" alias="alias.txt" maxUsers="1000" maxIdleTime="00:05:00" /> </configuration>

System.Configuration.ConfigurationPropertyCollection


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からConfigurationPropertyCollection クラスを検索する場合は、下記のリンクをクリックしてください。

- ConfigurationPropertyCollection クラスのページへのリンク