Next: NetClients.URL-comparing, Previous: NetClients.URL class-instance creation, Up: NetClients.URL [Index]
Answer the full request string corresponding to the URL. This is how the URL would be printed in the address bar of a web browser, except that the query data is printed even if it is to be sent through a POST request.
Convert the form fields to a Dictionary, answer nil if no question mark is found in the URL.
Answer the file part of the URL, decoding it from x-www-form-urlencoded format.
Answer the fragment part of the URL, decoding it from x-www-form-urlencoded format.
Answer the fragment part of the URL, leaving it in x-www-form-urlencoded format.
Set the fragment part of the URL, which should be in x-www-form-urlencoded format.
Answer the full request string corresponding to the URL. This is how the URL would be printed in the address bar of a web browser, except that the query data is printed even if it is to be sent through a POST request.
Answer whether the URL has a query part but is actually for an HTTP POST request and not really part of the URL (as it would be for the HTTP GET request).
Set whether the query part of the URL is actually the data for an HTTP POST request and not really part of the URL (as it would be for the HTTP GET request).
Answer the host part of the URL.
Set the host part of the URL to aString.
If the receiver is an nntp url, return the news group.
Answer the password part of the URL.
Set the password part of the URL to aString.
Answer the path part of the URL.
Set the path part of the URL to aString.
Answer the port number part of the URL.
Set the port number part of the URL to anInteger.
Answer whether the URL has a query part and it is meant for an HTTP POST request, answer it. Else answer nil.
Associate to the URL some data that is meant to be sent through an HTTP POST request, answer it.
Answer the query data associated to the URL.
Set the query data associated to the URL to aString.
Answer the URL as it would be sent in an HTTP stream (that is, the path and the query data, the latter only if it is to be sent with an HTTP POST request).
Answer the URL’s scheme.
Set the URL’s scheme to be aString.
Answer the username part of the URL.
Set the username part of the URL to aString.
Next: NetClients.URL-comparing, Previous: NetClients.URL class-instance creation, Up: NetClients.URL [Index]