- public HashTable<unowned string,unowned string> decode (string encoded_form)
Decodes form.
- public HashTable<unowned string,unowned string>? decode_multipart (Message msg, string? file_control_name, out string filename, out string content_type, out Buffer file)
Decodes the "multipart/form-data" request in multipart.
- public string encode (...)
Encodes the given field names and values into a value of type
"application/x-www-form-urlencoded".
- public string encode_datalist (Datalist<string> form_data_set)
Encodes form_data_set into a value of type
"application/x-www-form-urlencoded".
- public string encode_hash (HashTable<string,string> form_data_set)
Encodes form_data_set into a value of type
"application/x-www-form-urlencoded".
- public string encode_valist (string first_field, va_list args)
See [func@form_encode].
- public Message request_new (string method, string uri, ...)
Creates a new soupmessage and sets
it up to send the given data to uri via method.
- public Message request_new_from_datalist (string method, string uri, Datalist<string> form_data_set)
Creates a new soupmessage and sets
it up to send form_data_set to uri via method, as with
request_new.
- public Message request_new_from_hash (string method, string uri, HashTable<string,string> form_data_set)
Creates a new soupmessage and sets
it up to send form_data_set to uri via method, as with
request_new.
- public Message request_new_from_multipart (string uri, Multipart multipart)
Creates a new soupmessage and sets
it up to send multipart to uri via POST.