GenericUriParserOptions Enumeration

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Specifies options for a UriParser.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

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

Syntax

'Declaration
<FlagsAttribute> _
Public Enumeration GenericUriParserOptions
[FlagsAttribute]
public enum GenericUriParserOptions

Members

Member name Description
Supported by Silverlight for Windows PhoneSupported by Xbox 360 Default The parser:
  • requires an authority

  • converts back slashes into forward slashes

  • unescapes path dots, forward slashes, and back slashes

Supported by Silverlight for Windows PhoneSupported by Xbox 360 GenericAuthority The parser allows a registry-based authority.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 AllowEmptyAuthority The parser allows a URI with no authority.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 NoUserInfo The scheme does not define a user information part.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 NoPort The scheme does not define a port.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 NoQuery The scheme does not define a query part.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 NoFragment The scheme does not define a fragment part.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 DontConvertPathBackslashes The parser does not convert back slashes into forward slashes.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 DontCompressPath The parser does not canonicalize the URI.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 DontUnescapePathDotsAndSlashes The parser does not unescape path dots, forward slashes, or back slashes.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 Idn The parser supports Internationalized Domain Name (IDN) parsing (IDN) of host names. Whether IDN is used is dictated by configuration values. See the Remarks for more information.
Supported by Silverlight for Windows PhoneSupported by Xbox 360 IriParsing The parser supports the parsing rules specified in RFC 3987 for International Resource Identifiers (IRI). Whether IRI is used is dictated by configuration values. See the Remarks for more information.

Remarks

You can combine any of these options to configure a generic URI parser by passing the options as a parameter to the GenericUriParser.GenericUriParser(GenericUriParserOptions) constructor.

The existing System.Uri class in Silverlight does not currently provide support for International Resource Identifier (IRI) or Internationalized Domain Name (IDN) parsing applied to the domain name.

Silverlight applications cannot derive new classes from the Uri class.

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

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference