[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Specifies options for URL encoding.

Namespace: JohnHolliday.Caml.Net
Assembly:  JohnHolliday.Caml.Net (in JohnHolliday.Caml.Net.dll)

Syntax

C#
public enum UrlEncodingType
Visual Basic (Declaration)
Public Enumeration UrlEncodingType
Visual C++
public enum class UrlEncodingType

Members

Member nameDescription
None
Special characters are not encoded.
Standard
Convert special characters, such as spaces, to quoted UTF-8 format.
EncodeAsUrl
Convert special characters to quoted UTF-8 format, but treats the characters as a path component of a URL so that forward slashes ("/") are not encoded.

See Also