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

◆ unescape_data_string()

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

Converts a string to its unescaped representation.

Parameters
valueThe string to unescape.
Returns
string A string that contains the unescaped representation of stringToUnescape.
Exceptions
ArgumentNullExceptionvalue is null.
Remarks
You should use this method with care. Unescaping a string that has been previously unescaped can lead to ambiguities and errors.
Many Web browsers escape spaces inside of URIs into plus ("+") characters; however, the unescape_data_string method does not convert plus characters into spaces because this behavior is not standard across all URI schemes.