HtmlTextWriter.WriteUrlEncodedString(String, Boolean) 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.
Writes the specified string, encoding it according to URL requirements.
protected:
void WriteUrlEncodedString(System::String ^ text, bool argument);
protected void WriteUrlEncodedString (string text, bool argument);
member this.WriteUrlEncodedString : string * bool -> unit
Protected Sub WriteUrlEncodedString (text As String, argument As Boolean)
Parameters
- text
- String
The string to encode and write to the output stream.
- argument
- Boolean
true
to encode the string as a part of the parameter section of the URL; false
to encode the string as part of the path section of the URL.
Remarks
The WriteUrlEncodedString method encodes characters that could be considered URL delimiters (dependent on the setting of argument
) into strings of the form %xx
, if the ASCII code is less than 128; otherwise, %uxxxx
, where x
is a hexadecimal digit.
The WriteEncodedUrl and WriteEncodedUrlParameter methods use the WriteUrlEncodedString method as a utility method.