ConfigurationSectionCollection.Get Yöntem
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.
Bu ConfigurationSection nesneden bir ConfigurationSectionCollection nesne alır.
Aşırı Yüklemeler
| Name | Description |
|---|---|
| Get(Int32) |
Bu ConfigurationSection nesnede bulunan belirtilen ConfigurationSectionCollection nesneyi alır. |
| Get(String) |
Bu ConfigurationSection nesnede bulunan belirtilen ConfigurationSectionCollection nesneyi alır. |
Get(Int32)
Bu ConfigurationSection nesnede bulunan belirtilen ConfigurationSectionCollection nesneyi alır.
public:
System::Configuration::ConfigurationSection ^ Get(int index);
public System.Configuration.ConfigurationSection Get(int index);
member this.Get : int -> System.Configuration.ConfigurationSection
Public Function Get (index As Integer) As ConfigurationSection
Parametreler
- index
- Int32
Döndürülecek nesnenin ConfigurationSection dizini.
Döndürülenler
ConfigurationSection Belirtilen dizindeki nesne.
Şunlara uygulanır
Get(String)
Bu ConfigurationSection nesnede bulunan belirtilen ConfigurationSectionCollection nesneyi alır.
public:
System::Configuration::ConfigurationSection ^ Get(System::String ^ name);
public System.Configuration.ConfigurationSection Get(string name);
member this.Get : string -> System.Configuration.ConfigurationSection
Public Function Get (name As String) As ConfigurationSection
Parametreler
- name
- String
Döndürülecek nesnenin ConfigurationSection adı.
Döndürülenler
ConfigurationSection Belirtilen ada sahip nesne.
Özel durumlar
name null veya boş bir dize ("").
Örnekler
Aşağıdaki kod örneğinde nasıl kullanılacağı Getgösterilmektedir.
static void GetSection()
{
try
{
CustomSection customSection =
ConfigurationManager.GetSection(
"CustomSection") as CustomSection;
if (customSection == null)
Console.WriteLine(
"Failed to load CustomSection.");
else
{
// Display section information
Console.WriteLine("Defaults:");
Console.WriteLine("File Name: {0}",
customSection.FileName);
Console.WriteLine("Max Users: {0}",
customSection.MaxUsers);
Console.WriteLine("Max Idle Time: {0}",
customSection.MaxIdleTime);
}
}
catch (ConfigurationErrorsException err)
{
Console.WriteLine(err.ToString());
}
}
Shared Sub GetSection()
Try
Dim customSection _
As CustomSection = _
ConfigurationManager.GetSection( _
"CustomSection")
If customSection Is Nothing Then
Console.WriteLine("Failed to load CustomSection.")
Else
' Display section information
Console.WriteLine("Defaults:")
Console.WriteLine("File Name: {0}", _
customSection.FileName)
Console.WriteLine("Max Users: {0}", _
customSection.MaxUsers)
Console.WriteLine("Max Idle Time: {0}", _
customSection.MaxIdleTime)
End If
Catch err As ConfigurationErrorsException
Console.WriteLine(err.ToString())
End Try
End Sub