xtd 0.2.0
Loading...
Searching...
No Matches

◆ escape_data_string()

static xtd::ustring xtd::uri::escape_data_string ( const xtd::ustring value)
static

Converts a string to its escaped representation.

Parameters
valueThe string to escape.
Returns
string A string that contains the escaped representation of stringToEscape.
Exceptions
ArgumentNullExceptionvalue is null.
UriFormatExceptionThe length of value exceeds 32766 characters.
Remarks
By default, the escape_data_string method converts all characters except for RFC 2396 unreserved characters to their hexadecimal representation. If International Resource Identifiers (IRIs) or Internationalized Domain Name (IDN) parsing is enabled, the escape_data_string method converts all characters, except for RFC 3986 unreserved characters, to their hexadecimal representation. All Unicode characters are converted to UTF-8 format before being escaped.
This method assumes that stringToEscape has no escape sequences in it.
By default, the string is escaped according to RFC 2396. If International Resource Identifiers (IRIs) or Internationalized Domain Name (IDN) parsing is enabled, the string is escaped according to RFC 3986 and RFC 3987. See these RFCs for a definition of reserved and unreserved characters.
For more information on URI support, see the Remarks section for the xtd::uri class.