ElementInformation.IsPresent Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene un valore che indica se l'oggetto ConfigurationElement associato è contenuto nel file di configurazione.
public:
property bool IsPresent { bool get(); };
public bool IsPresent { get; }
member this.IsPresent : bool
Public ReadOnly Property IsPresent As Boolean
Valore della proprietà
true
se l'oggetto ConfigurationElement associato è contenuto nel file di configurazione; in caso contrario, false
.
Esempio
Nell'esempio seguente viene illustrato come utilizzare la proprietà 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