bool xtd::uri::is_well_formed_original_string | ( | ) |
Indicates whether the string used to construct this xtd::uri was well-formed and is not required to be further escaped.
Error | Example |
---|---|
The string is not correctly escaped. | http://www.contoso.com/path???/file name |
The string is an absolute xtd::uri that represents an implicit file xtd::uri. | c:\directory\filename |
The string is an absolute URI that is missing a slash before the path. | file://c:/directory/filename |
The string contains unescaped backslashes even if they are treated as forward slashes. | http:\host/path/file |
The string represents a hierarchical absolute xtd::uri and does not contain "://". | www.contoso.com/path/file |
The parser for the xtd::uri.scheme indicates that the original string was not well-formed. | The example depends on the scheme of the URI. |