MobileTextWriter.WriteEncodedUrl(String) 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 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.