ElementInformation.IsLocked Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает значение, определяющее, можно ли изменять связанный объект ConfigurationElement.
public:
property bool IsLocked { bool get(); };
public bool IsLocked { get; }
member this.IsLocked : bool
Public ReadOnly Property IsLocked As Boolean
Значение свойства
true
, если связанный объект ConfigurationElement не может быть изменен, иначе false
.
Примеры
В следующем примере показано, как использовать свойство 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
Комментарии
Свойство IsLocked возвращает значение true
, если связанный элемент заблокирован свойством AllowOverride, AllowDefinitionили LockAllAttributesExcept .