httpxx 0.1
Streaming HTTP Parser for C++

HTTP methods.

Functions

static const Method http::Method::del ()
 Delete the resource.
static const Method http::Method::get ()
 Fetch the resource.
static const Method http::Method::head ()
 Like GET, but don't send a response body (headers only).
static const Method http::Method::post ()
 Submit information about the resource.
static const Method http::Method::put ()
 Replace the resource.
static const Method http::Method::patch ()
 Partially update the resource (RFC 5789).

Function Documentation

const Method http::Method::patch ( ) [static, inherited]

Partially update the resource (RFC 5789).

See also:
post()
put()

Definition at line 133 of file Method.cpp.

const Method http::Method::post ( ) [static, inherited]

Submit information about the resource.

See also:
put()
patch()

Definition at line 33 of file Method.cpp.

const Method http::Method::put ( ) [static, inherited]

Replace the resource.

See also:
post()
patch()

Definition at line 38 of file Method.cpp.

 All Classes Functions