SectionInformation.IsLocked Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur qui indique si la section de configuration associée est verrouillée.
public:
property bool IsLocked { bool get(); };
public bool IsLocked { get; }
member this.IsLocked : bool
Public ReadOnly Property IsLocked As Boolean
Valeur de propriété
true
si la section est verrouillée ; sinon, false
.
Exemples
Les exemples de cette section montrent comment obtenir la valeur de la IsLocked propriété après avoir accédé aux informations de section associées dans le fichier de configuration.
L’exemple suivant obtient l’objet SectionInformation .
// Get the current configuration file.
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
// Get the section.
UrlsSection section =
(UrlsSection)config.GetSection("MyUrls");
SectionInformation sInfo =
section.SectionInformation;
' 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)
Dim sInfo As SectionInformation = _
section.SectionInformation
L’exemple suivant obtient la IsLocked valeur.
bool locked =
sInfo.IsLocked;
Console.WriteLine("Section locked?: {0}",
locked.ToString());
Dim locked As Boolean = _
sInfo.IsLocked
Console.WriteLine("Section locked?: {0}", _
locked.ToString())
Remarques
La IsLocked propriété retourne true
lorsque la section associée est verrouillée par la AllowOverrideAllowDefinition propriété ou . Une section est verrouillée si elle ne peut pas être remplacée ou définie dans le fichier de configuration actuel.