Прочитать на английском

Поделиться через


ElementInformation.Type Свойство

Определение

Возвращает тип связанного объекта ConfigurationElement.

public Type Type { get; }

Значение свойства

Тип связанного объекта ConfigurationElement.

Примеры

В следующем примере показано, как использовать свойство Type.

static public void GetElementType()
{
    // 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 type.
    Type elType =
        url.ElementInformation.Type;

    Console.WriteLine("Url element type: {0}",
                    elType.ToString());
}

Применяется к

Продукт Версии
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9