Uri.EscapeDataString Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EscapeDataString(ReadOnlySpan<Char>) |
Converts a span to its escaped representation. |
EscapeDataString(String) |
Converts a string to its escaped representation. |
EscapeDataString(ReadOnlySpan<Char>)
Converts a span to its escaped representation.
public:
static System::String ^ EscapeDataString(ReadOnlySpan<char> charsToEscape);
public static string EscapeDataString (ReadOnlySpan<char> charsToEscape);
static member EscapeDataString : ReadOnlySpan<char> -> string
Public Shared Function EscapeDataString (charsToEscape As ReadOnlySpan(Of Char)) As String
Parameters
- charsToEscape
- ReadOnlySpan<Char>
The span to escape.
Returns
The escaped representation of charsToEscape
.
Applies to
EscapeDataString(String)
- Source:
- UriExt.cs
- Source:
- UriExt.cs
- Source:
- UriExt.cs
Converts a string to its escaped representation.
public:
static System::String ^ EscapeDataString(System::String ^ stringToEscape);
public static string EscapeDataString (string stringToEscape);
static member EscapeDataString : string -> string
Public Shared Function EscapeDataString (stringToEscape As String) As String
Parameters
- stringToEscape
- String
The string to escape.
Returns
The escaped representation of stringToEscape
.
Exceptions
stringToEscape
is null
.
Note: In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, FormatException, instead.
The length of stringToEscape
exceeds 32766 characters.
Remarks
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.