sfml3.rb

Module: SFML::HttpMethod

Defined in:
ext/network/network_enums.c,
ext/network/network_enums.c

Overview

The method (verb) of an HttpRequest.

Constant Summary collapse

GET =

Request in GET mode, the standard method to retrieve a page.

INT2NUM(sfHttpGet)
POST =

Request in POST mode, usually to send data to a page.

INT2NUM(sfHttpPost)
HEAD =

Request a page's header only.

INT2NUM(sfHttpHead)
PUT =

Request in PUT mode, useful for a REST API.

INT2NUM(sfHttpPut)
DELETE =

Request in DELETE mode, useful for a REST API.

INT2NUM(sfHttpDelete)