SectionInformation::AllowLocation Property

 

Gets or sets a value that indicates whether the configuration section allows the location attribute.

Namespace:   System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)

public:
property bool AllowLocation {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the location attribute is allowed; otherwise, false. The default is true.

Exception Condition
ConfigurationErrorsException

The selected value conflicts with a value that is already defined.

When set to false, the AllowLocation property indicates that the section is accessed by native-code readers. Therefore, the use of the location attribute is not allowed, because the native-code readers do not support the concept of location.

The examples in this section show how to get the AllowLocation property value after accessing the related section information in the configuration file.

The following example gets the SectionInformation object.

No code example is currently available or this language may not be supported.

The following example gets the AllowLocation value.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: