GenericUriParserOptions Enumeration
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Specifies options for a UriParser.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: SystemAssembly: System (in System.dll)
| Member name | Description | |
|---|---|---|
| AllowEmptyAuthority | The parser allows a URI with no authority. | |
| Default | The parser:
| |
| DontCompressPath | The parser does not canonicalize the URI. | |
| DontConvertPathBackslashes | The parser does not convert back slashes into forward slashes. | |
| DontUnescapePathDotsAndSlashes | The parser does not unescape path dots, forward slashes, or back slashes. | |
| GenericAuthority | The parser allows a registry-based authority. | |
| 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. | |
| 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. | |
| NoFragment | The scheme does not define a fragment part. | |
| NoPort | The scheme does not define a port. | |
| NoQuery | The scheme does not define a query part. | |
| NoUserInfo | The scheme does not define a user information part. |
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 Windows Phone does not currently provide support for International Resource Identifier (IRI) or Internationalized Domain Name (IDN) parsing applied to the domain name.
Windows Phone applications cannot derive new classes from the Uri class.
For more information on IRI support, see the Remarks section for the System::Uri class.