Method: Net::HTTP#propfind
- Defined in:
- lib/rubysl/net/http/http.rb
#propfind(path, body = nil, initheader = {'Depth' => '0'}) ⇒ Object
Sends a PROPFIND request to the path and gets a response, as an HTTPResponse object.
1219 1220 1221 |
# File 'lib/rubysl/net/http/http.rb', line 1219 def propfind(path, body = nil, initheader = {'Depth' => '0'}) request(Propfind.new(path, initheader), body) end |