SectionInformation.AllowLocation Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define um valor que indica se a seção de configuração permite usar o atributo location
.
public:
property bool AllowLocation { bool get(); void set(bool value); };
public bool AllowLocation { get; set; }
member this.AllowLocation : bool with get, set
Public Property AllowLocation As Boolean
Valor da propriedade
true
se o atributo location
for permitido; caso contrário, false
. O padrão é true
.
Exceções
Os conflitos de valor selecionados com um valor que já está definido.
Exemplos
Os exemplos nesta seção mostram como obter o valor da AllowLocation propriedade depois de acessar as informações de seção relacionadas no arquivo de configuração.
O exemplo a seguir obtém o SectionInformation objeto .
// 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
O exemplo a seguir obtém o AllowLocation valor .
bool allowLocation =
sInfo.AllowLocation;
Console.WriteLine("Allow location: {0}",
allowLocation.ToString());
Dim allowLocation As Boolean = _
sInfo.AllowLocation
Console.WriteLine("Allow location: {0}", _
allowLocation.ToString())
Comentários
Quando definida false
como , a AllowLocation propriedade indica que a seção é acessada por leitores de código nativo. Portanto, o uso do location
atributo não é permitido, pois os leitores de código nativo não dão suporte ao conceito de location
.