SectionInformation.AllowLocation 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 ou définit une valeur qui indique si la section de configuration autorise l'attribut 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
Valeur de propriété
true
si l'attribut location
est autorisé ; sinon, false
. La valeur par défaut est true
.
Exceptions
La valeur sélectionnée est en conflit avec une valeur déjà définie.
Exemples
Les exemples de cette section montrent comment obtenir la valeur de propriété AllowLocation 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 AllowLocation valeur .
bool allowLocation =
sInfo.AllowLocation;
Console.WriteLine("Allow location: {0}",
allowLocation.ToString());
Dim allowLocation As Boolean = _
sInfo.AllowLocation
Console.WriteLine("Allow location: {0}", _
allowLocation.ToString())
Remarques
Quand la valeur est définie sur , la AllowLocation propriété indique que les lecteurs de code natif accèdent à false
la section. Par conséquent, l’utilisation de l’attribut location
n’est pas autorisée, car les lecteurs de code natif ne prennent pas en charge le concept de location
.