SectionInformation.InheritInChildApplications Property
Gets or sets a value that indicates whether the settings that are specified in the associated configuration section are inherited by applications that reside in a subdirectory of the relevant application.
Assembly: System.Configuration (in System.Configuration.dll)
Property Value
Type: System.Booleantrue if the settings specified in this ConfigurationSection object are inherited by child applications; otherwise, false. The default is true.
The InheritInChildApplications property represents the inheritInChildApplicationsattribute of a location element in a configuration file.
Set InheritInChildApplications to false to prevent settings that are specific to a certain location (such as the root directory of a Web site) from being inherited by applications that exist in subdirectories.
The following example shows how to use this attribute in a configuration file to specify that the settings defined in the location element for the root of a Web site should not be inherited by child applications:
<location path="." inheritInChildApplications="false">
The InheritInChildApplications property applies only to location-specific configuration settings.
The following example shows how to get the InheritInChildApplications value of a ConfigurationSection object.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Update: Make sure your Configuration tag has this following ns property so it knows the new schema.
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
- 11/5/2011
- Levar Berry
- 11/5/2011
- Levar Berry
To view them scroll right up to the top of this page then select "Other Versions" and click ".NET 3.5 Framework" and then scroll all the way back down to the footer again.
- 4/6/2011
- rtpHarry