Uri.EscapeDataString Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Converts a string to its escaped representation.
Namespace: System
Assembly: System (in System.dll)
Parameters
- stringToEscape
- Type: System.String
The string to escape.
| Exception | Condition |
|---|---|
| ArgumentNullException |
stringToEscape is null. |
| UriFormatException |
The length of stringToEscape exceeds 32766 characters. |
By default, the EscapeDataString 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 EscapeDataString 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 IRI support, see the Remarks section for the Uri class.
Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.