IriParsingElement::Enabled Property

 

Gets or sets the value of the IriParsingElement configuration setting.

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

public:
[ConfigurationPropertyAttribute("enabled", DefaultValue = false)]
property bool Enabled {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

A Boolean that indicates if International Resource Identifier (IRI) processing is enabled.

The IriParsingElement configuration setting controls IRI processing in the System::Uri class. This setting also indirectly controls International Domain Name (IDN) processing set with the System.Configuration::IdnElement class. IRI processing must be enabled for IDN processing to be possible. If IRI processing is disabled, then IDN processing will be set to the default setting where the .NET Framework 2.0 behavior is used for compatibility and IDN names are not used.

The configuration setting for the IriParsingElement will be read once when the first System::Uri class is constructed. Changes to configuration settings after that time are ignored.

For more information on IRI support, see the Remarks section for the System::Uri class.

.NET Framework
Available since 2.0
Return to top
Show: