Method: Net::HTTP#trace
- Defined in:
- lib/rubysl/net/http/http.rb
#trace(path, initheader = nil) ⇒ Object
Sends a TRACE request to the path and gets a response, as an HTTPResponse object.
1249 1250 1251 |
# File 'lib/rubysl/net/http/http.rb', line 1249 def trace(path, initheader = nil) request(Trace.new(path, initheader)) end |