class Net::HTTP::Options
Class for representing HTTP method OPTIONS:
require 'net/http' uri = URI('http://example.com') hostname = uri.hostname # => "example.com" req = Net::HTTP::Options.new(uri) # => #<Net::HTTP::Options OPTIONS> res = Net::HTTP.start(hostname) do |http| http.request(req) end
See Request Headers.
Properties:
- 
Request body: optional. 
- 
Response body: yes. 
- 
Safe: yes. 
- 
Idempotent: yes. 
- 
Cacheable: no. 
Related:
- 
Net::HTTP#options: sendsOPTIONSrequest, returns response object.
Constants
- METHOD
- REQUEST_HAS_BODY
- RESPONSE_HAS_BODY