UriSection.IriParsing Property

Definition

Gets an IriParsingElement object that contains the configuration setting for International Resource Identifiers (IRI) parsing in the Uri class.

public:
 property System::Configuration::IriParsingElement ^ IriParsing { System::Configuration::IriParsingElement ^ get(); };
[System.Configuration.ConfigurationProperty("iriParsing")]
public System.Configuration.IriParsingElement IriParsing { get; }
public System.Configuration.IriParsingElement IriParsing { get; }
[<System.Configuration.ConfigurationProperty("iriParsing")>]
member this.IriParsing : System.Configuration.IriParsingElement
member this.IriParsing : System.Configuration.IriParsingElement
Public ReadOnly Property IriParsing As IriParsingElement

Property Value

The configuration setting for International Resource Identifiers (IRI) parsing in the Uri class.

Attributes

Remarks

The existing System.Uri class has been extended to provide support for International Resource Identifiers (IRI) and Internationalized Domain Names. Current users will not see any change from the .NET Framework 2.0 behavior unless they specifically enable IRI and IDN. This ensures application compatibility with prior versions of the .NET Framework.

The configuration settings for IRI and IDN can be retrieved using the UriSection class. The IriParsing property returns the configuration setting for IRI parsing in the System.Uri 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 Internationalized Domain Name (IDN) attribute only controls IDN processing. All other IRI processing (character normalization, for example) is performed by default.

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.

Applies to

See also