ElementInformation.IsCollection Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
İlişkili ConfigurationElement nesnenin bir koleksiyon olup olmadığını belirten bir ConfigurationElementCollection değer alır.
public:
property bool IsCollection { bool get(); };
public bool IsCollection { get; }
member this.IsCollection : bool
Public ReadOnly Property IsCollection As Boolean
Özellik Değeri
true
ilişkili ConfigurationElement nesne bir ConfigurationElementCollection koleksiyonsa; değilse, false
.
Örnekler
Aşağıdaki örnekte özelliğinin nasıl kullanılacağı gösterilmektedir 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
Şunlara uygulanır
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.