Type net:URL

A URL (Uniform Resource Locator) represents a network resource.
extends net:URI
Constructors:
net:URL(Node uri)
Create a new URL using the string value of uri
Functions:
get()
Send a GET HTTP request to this net:URL and return the response.
Returns: A net:HttpResponse response message.
parse()
post(Node data)
POST a HTTP request to this net:URL and return the response. The request is created with content-type 'text/xml' containing the serialised data.
Returns: A net:HttpResponse response message.
read()
Read the network resource represented by this net:URL.
socket()
ssl()
ssl(Boolean ssl)
stream()
Get a stream for reading content
Functions inherited from net:URI:
authority()
host()
path()
port()
query()
scheme()
Get the URI scheme, or (for URL's) protocol.
string()
Get a String representation of this net:URI
userinfo()