Wiki
Version 3 (modified by Charles, 11 years ago)

--

Note: If you are referencing HttpUtility just for encoding and decoding URLs and HTML, these basic functions are available in Cobra.Core.

Using HttpUtility requires a reference to the System.Web library:

@ref 'System.Web'
use System.Web

class Test

    def main
        text = 'foo&bar'
        encoded = HttpUtility.urlEncode(text)
        assert encoded == 'foo%26bar'
        assert HttpUtility.urlDecode(encoded) == text

See also: LibraryTopics, WebDevelopment