post-data - Factor Documentation (original) (raw)

post-data
HTTP protocol objects » HTTP requests » HTTP post data

Next: ( content-type -- post-data )

Vocabulary
http

Class description
HTTP POST data passed in a POST request.

Instances contain the following slots:

data The POST data. This can be in a higher-level form, such as an assoc of POST parameters, a string, or an XML document
params Parameters passed in the POST request.
content-type A MIME type
content-encoding Encoding used for the POST data

Definition

IN: http

TUPLE: post-data data params content-type content-encoding ;

Methods

USING: http http.client.post-data ;

M: post-data >post-data ;