ElementInformation.IsLocked Tulajdonság
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
Olyan értéket kap, amely jelzi, hogy a társított ConfigurationElement objektum nem módosítható-e.
public:
property bool IsLocked { bool get(); };
public bool IsLocked { get; }
member this.IsLocked : bool
Public ReadOnly Property IsLocked As Boolean
Tulajdonság értéke
trueha a társított ConfigurationElement objektum nem módosítható; ellenkező esetben. false
Példák
Az alábbi példa bemutatja, hogyan használhatja a tulajdonságot IsLocked .
static public void IsElementLocked()
{
// 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 isLocked =
url.ElementInformation.IsLocked;
Console.WriteLine("Url element is locked? {0}",
isLocked.ToString());
}
Public Shared Sub IsElementLocked()
' 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 isLocked As Boolean = _
url.ElementInformation.IsLocked
Console.WriteLine("Url element is locked? {0}", _
isLocked.ToString())
End Sub
Megjegyzések
A IsLocked tulajdonság akkor ad true vissza, ha a kapcsolódó elemet zárolja az AllowOverride, AllowDefinitionvagy LockAllAttributesExcept tulajdonság.