SectionInformation.AllowExeDefinition Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates where in the configuration file hierarchy the associated configuration section can be declared.
public:
property System::Configuration::ConfigurationAllowExeDefinition AllowExeDefinition { System::Configuration::ConfigurationAllowExeDefinition get(); void set(System::Configuration::ConfigurationAllowExeDefinition value); };
public System.Configuration.ConfigurationAllowExeDefinition AllowExeDefinition { get; set; }
member this.AllowExeDefinition : System.Configuration.ConfigurationAllowExeDefinition with get, set
Public Property AllowExeDefinition As ConfigurationAllowExeDefinition
Property Value
A value that indicates where in the configuration file hierarchy the associated ConfigurationSection object can be declared for .exe files.
Exceptions
The selected value conflicts with a value that is already defined.
Examples
The examples in this section show how to get the AllowExeDefinition property value after accessing the related section information in the configuration file.
The following example gets the SectionInformation object.
// 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
The following example gets the AllowExeDefinition value.
ConfigurationAllowExeDefinition allowExeDefinition =
sInfo.AllowExeDefinition;
Console.WriteLine("Allow exe definition: {0}",
allowExeDefinition.ToString());
Dim allowExeDefinition _
As ConfigurationAllowExeDefinition = _
sInfo.AllowExeDefinition
Console.WriteLine("Allow exe definition: {0}", _
allowExeDefinition.ToString())
Remarks
AllowExeDefinition applies only to configuration files of client applications. For Web applications, you must use AllowDefinition.