ConfigurationSectionCollection.Item[] Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Получает указанный объект ConfigurationSection.
Перегрузки
Item[Int32] |
Получает указанный объект ConfigurationSection. |
Item[String] |
Получает указанный объект ConfigurationSection. |
Item[Int32]
- Исходный код:
- ConfigurationSectionCollection.cs
- Исходный код:
- ConfigurationSectionCollection.cs
- Исходный код:
- ConfigurationSectionCollection.cs
Получает указанный объект ConfigurationSection.
public:
property System::Configuration::ConfigurationSection ^ default[int] { System::Configuration::ConfigurationSection ^ get(int index); };
public System.Configuration.ConfigurationSection this[int index] { get; }
member this.Item(int) : System.Configuration.ConfigurationSection
Default Public ReadOnly Property Item(index As Integer) As ConfigurationSection
Параметры
- index
- Int32
Индекс возвращаемого объекта ConfigurationSection.
Значение свойства
Объект ConfigurationSection, расположенный по указанному индексу.
Примеры
В следующем примере кода показано, как использовать Item[].
static void GetItems()
{
try
{
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
ConfigurationSectionCollection sections =
config.Sections;
ConfigurationSection section1 =
sections["runtime"];
ConfigurationSection section2 =
sections[0];
Console.WriteLine(
"Section1: {0}", section1.SectionInformation.Name);
Console.WriteLine(
"Section2: {0}", section2.SectionInformation.Name);
}
catch (ConfigurationErrorsException err)
{
Console.WriteLine(err.ToString());
}
}
Shared Sub GetItems()
Try
Dim config _
As System.Configuration.Configuration = _
ConfigurationManager.OpenExeConfiguration( _
ConfigurationUserLevel.None)
Dim sections _
As ConfigurationSectionCollection = _
config.Sections
Dim section1 As ConfigurationSection = _
sections.Item("runtime")
Dim section2 As ConfigurationSection = _
sections.Item(0)
Console.WriteLine("Section1: {0}", _
section1.SectionInformation.Name)
Console.WriteLine("Section2: {0}", _
section2.SectionInformation.Name)
Catch err As ConfigurationErrorsException
Console.WriteLine(err.ToString())
End Try
End Sub
Комментарии
Это свойство получает указанную запись ConfigurationSectionCollection объекта .
В C# это свойство является индексатором класса ConfigurationSectionCollection.
См. также раздел
Применяется к
Item[String]
- Исходный код:
- ConfigurationSectionCollection.cs
- Исходный код:
- ConfigurationSectionCollection.cs
- Исходный код:
- ConfigurationSectionCollection.cs
Получает указанный объект ConfigurationSection.
public:
property System::Configuration::ConfigurationSection ^ default[System::String ^] { System::Configuration::ConfigurationSection ^ get(System::String ^ name); };
public System.Configuration.ConfigurationSection this[string name] { get; }
member this.Item(string) : System.Configuration.ConfigurationSection
Default Public ReadOnly Property Item(name As String) As ConfigurationSection
Параметры
- name
- String
Имя возвращаемого объекта ConfigurationSection.
Значение свойства
Объект ConfigurationSection с указанным именем.
Примеры
В следующем примере кода показано, как использовать Item[].
static void GetItems()
{
try
{
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
ConfigurationSectionCollection sections =
config.Sections;
ConfigurationSection section1 =
sections["runtime"];
ConfigurationSection section2 =
sections[0];
Console.WriteLine(
"Section1: {0}", section1.SectionInformation.Name);
Console.WriteLine(
"Section2: {0}", section2.SectionInformation.Name);
}
catch (ConfigurationErrorsException err)
{
Console.WriteLine(err.ToString());
}
}
Shared Sub GetItems()
Try
Dim config _
As System.Configuration.Configuration = _
ConfigurationManager.OpenExeConfiguration( _
ConfigurationUserLevel.None)
Dim sections _
As ConfigurationSectionCollection = _
config.Sections
Dim section1 As ConfigurationSection = _
sections.Item("runtime")
Dim section2 As ConfigurationSection = _
sections.Item(0)
Console.WriteLine("Section1: {0}", _
section1.SectionInformation.Name)
Console.WriteLine("Section2: {0}", _
section2.SectionInformation.Name)
Catch err As ConfigurationErrorsException
Console.WriteLine(err.ToString())
End Try
End Sub
Комментарии
Это свойство получает указанную запись ConfigurationSectionCollection объекта .
В C# это свойство является индексатором класса ConfigurationSectionCollection.