ElementInformation.IsCollection プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
関連付けられている ConfigurationElement オブジェクトが ConfigurationElementCollection コレクションであるかどうかを示す値を取得します。
public:
property bool IsCollection { bool get(); };
public bool IsCollection { get; }
member this.IsCollection : bool
Public ReadOnly Property IsCollection As Boolean
プロパティ値
関連付けられている ConfigurationElement オブジェクトが ConfigurationElementCollection コレクションである場合は true
。それ以外の場合は false
。
例
IsCollection プロパティを使用する方法を次の例に示します。
static public void IsElementCollection()
{
// 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 collection element.
UrlsCollection urls = section.Urls;
bool isCollection =
url.ElementInformation.IsCollection;
Console.WriteLine("Url element is a collection? {0}",
isCollection.ToString());
isCollection =
urls.ElementInformation.IsCollection;
Console.WriteLine("Urls element is a collection? {0}",
isCollection.ToString());
}
Public Shared Sub IsElementCollection()
' 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 collection element.
Dim urls As UrlsCollection = section.Urls
Dim isCollection As Boolean = _
url.ElementInformation.IsCollection
Console.WriteLine("Url element is a collection? {0}", _
isCollection.ToString())
isCollection = _
urls.ElementInformation.IsCollection
Console.WriteLine("Urls element is a collection? {0}", _
isCollection.ToString())
End Sub
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET