IriParsingElement.Enabled 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 the value of the IriParsingElement configuration setting.
public:
property bool Enabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enabled", DefaultValue=false)]
public bool Enabled { get; set; }
public bool Enabled { get; set; }
[<System.Configuration.ConfigurationProperty("enabled", DefaultValue=false)>]
member this.Enabled : bool with get, set
member this.Enabled : bool with get, set
Public Property Enabled As Boolean
Property Value
A Boolean that indicates if International Resource Identifier (IRI) processing is enabled.
- Attributes
Remarks
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.