MobileTextWriter.WriteEncodedUrl(String) Method

Definition

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

public:
 virtual void WriteEncodedUrl(System::String ^ url);
public virtual void WriteEncodedUrl (string url);
abstract member WriteEncodedUrl : string -> unit
override this.WriteEncodedUrl : string -> unit
Public Overridable Sub WriteEncodedUrl (url As String)

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

See also