ElementInformation.Properties プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
関連付けられている PropertyInformationCollection オブジェクトのプロパティの ConfigurationElement コレクションを取得します。
public:
property System::Configuration::PropertyInformationCollection ^ Properties { System::Configuration::PropertyInformationCollection ^ get(); };
public System.Configuration.PropertyInformationCollection Properties { get; }
member this.Properties : System.Configuration.PropertyInformationCollection
Public ReadOnly Property Properties As PropertyInformationCollection
プロパティ値
関連付けられている PropertyInformationCollection オブジェクトのプロパティの ConfigurationElement コレクション。
例
次の例は、コレクションを取得する方法を Properties 示しています。
static public void GetElementProperties()
{
// Get the current configuration file.
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
// Get the section.
UrlsSection section =
(UrlsSection)config.GetSection("MyUrls");
// Get the element.
UrlConfigElement url = section.Simple;
// Get the element properties.
PropertyInformationCollection properties =
url.ElementInformation.Properties;
foreach (PropertyInformation prop in properties)
{
Console.WriteLine(
"Name: {0} Type: {1}", prop.Name,
prop.Type.ToString());
}
}
Public Shared Sub GetElementProperties()
' Get the current configuration file.
Dim config _
As System.Configuration.Configuration = _
ConfigurationManager.OpenExeConfiguration( _
ConfigurationUserLevel.None)
' Get the section.
Dim section As UrlsSection = _
CType(config.GetSection("MyUrls"), UrlsSection)
' Get the element.
Dim url As UrlConfigElement = _
section.Simple
' Get the element properties.
Dim properties _
As PropertyInformationCollection = _
url.ElementInformation.Properties
Dim prop As PropertyInformation
For Each prop In properties
Console.WriteLine("Name: {0} Type: {1}", _
prop.Name, prop.Type.ToString())
Next prop
End Sub
注釈
オブジェクトの ConfigurationElement プロパティは、構成ファイル内のその構成要素に関連付けられている属性とサブ要素です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET