MobileTextWriter.WriteEncodedUrl(String) Method

Definition

Writes the given URL, encoding it correctly for the target device. The URL might include parameters.

C#
public virtual void WriteEncodedUrl(string url);

Parameters

url
String

The URL string.

Remarks

The URL is translated in accordance with the specification for URL encoding. For example, spaces in the main part of the URL are translated into %20, spaces in the parameter part of the URL are translated into plus (+) signs, the '/' character is translated into %2f, and so forth.

Derived writer classes can override this method.

Applies to

Proizvod Verzije
.NET Framework 1.1

See also