HttpUtility::UrlEncodeUnicode Method (String^)
.NET Framework (current version)
Note: This API is now obsolete.
Namespace:
System.Web
Assembly: System.Web (in System.Web.dll)
Return to top
Converts a string into a Unicode string.
Assembly: System.Web (in System.Web.dll)
public: [ObsoleteAttribute("This method produces non-standards-compliant output and has interoperability issues. The preferred alternative is UrlEncode(String).")] static String^ UrlEncodeUnicode( String^ str )
Parameters
- str
-
Type:
System::String^
The string to convert.
If characters such as blanks and punctuation are passed in an HTTP stream, they might be misinterpreted at the receiving end. URL encoding converts characters that are not valid in a URL to character-entity equivalents; URL decoding reverses the encoding. For example, when embedded in a block of text to be transmitted in a URL, the characters < and > are encoded as %3c and %3e.
.NET Framework
Available since 1.1
Available since 1.1
Show: