Partager via


SectionInformation.InheritInChildApplications Propriété

Définition

Obtient ou définit une valeur qui indique si les paramètres spécifiés dans la section de configuration associée sont hérités par des applications qui résident dans un sous-répertoire de l'application correspondante.

public:
 property bool InheritInChildApplications { bool get(); void set(bool value); };
public bool InheritInChildApplications { get; set; }
member this.InheritInChildApplications : bool with get, set
Public Property InheritInChildApplications As Boolean

Valeur de propriété

true si les paramètres spécifiés dans cet objet ConfigurationSection sont hérités par les applications enfants ; sinon, false. La valeur par défaut est true.

Exemples

L’exemple suivant montre comment obtenir la InheritInChildApplications valeur d’un ConfigurationSection objet.

static public void GetInheritInChildApps()
{
    SectionInformation sInfo =
        GetSectionInformation();

    bool inheritInChildApps =
        sInfo.InheritInChildApplications;
    Console.WriteLine("Inherit in child apps: {0}",
        inheritInChildApps.ToString());
}
Public Shared Sub GetInheritInChildApps() 

    Dim sInfo As SectionInformation = _
    GetSectionInformation()
    
    Dim inheritInChildApps As Boolean = _
    sInfo.InheritInChildApplications
    Console.WriteLine("Inherit in child apps: {0}", _
    inheritInChildApps.ToString())

End Sub

Remarques

La InheritInChildApplications propriété représente l’attribut inheritInChildApplications d’un location élément dans un fichier de configuration.

Définissez sur InheritInChildApplicationsfalse pour empêcher les paramètres spécifiques à un emplacement donné (comme le répertoire racine d’un site Web) d’être hérités par les applications qui existent dans les sous-répertoires.

L’exemple suivant montre comment utiliser cet attribut dans un fichier de configuration pour spécifier que les paramètres définis dans l’élément location pour la racine d’un site web ne doivent pas être hérités par les applications enfants :

<location path="." inheritInChildApplications="false">

La InheritInChildApplications propriété s’applique uniquement aux paramètres de configuration spécifiques à l’emplacement.

S’applique à