ElementInformation.IsLocked Propriedade
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Obtém um valor que indica se o objeto associado ConfigurationElement não pode ser modificado.
public:
property bool IsLocked { bool get(); };
public bool IsLocked { get; }
member this.IsLocked : bool
Public ReadOnly Property IsLocked As Boolean
Valor de Propriedade
true se o objeto associado ConfigurationElement não puder ser modificado; caso contrário, false.
Exemplos
O exemplo seguinte mostra como utilizar a IsLocked propriedade.
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
Observações
A IsLocked propriedade retorna true quando o elemento relacionado está bloqueado pela AllowOverride, AllowDefinition, ou LockAllAttributesExcept propriedade.