ElementInformation.IsPresent Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает значение, указывающее, находится ли связанный объект ConfigurationElement в файле конфигурации.
public:
property bool IsPresent { bool get(); };
public bool IsPresent { get; }
member this.IsPresent : bool
Public ReadOnly Property IsPresent As Boolean
Значение свойства
true
, если связанный объект ConfigurationElement находится в файле конфигурации, в противном случае — false
.
Примеры
В следующем примере показано, как использовать свойство IsPresent.
static public void IsElementPresent()
{
// 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;
bool isPresent =
url.ElementInformation.IsPresent;
Console.WriteLine("Url element is present? {0}",
isPresent.ToString());
}
Public Shared Sub IsElementPresent()
' 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
Dim isPresent As Boolean = _
url.ElementInformation.IsPresent
Console.WriteLine("Url element is present? {0}", _
isPresent.ToString())
End Sub
Применяется к
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.