Method: Net::HTTP#propfind
- Defined in:
- lib/net/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.
888 889 890 |
# File 'lib/net/http.rb', line 888 def propfind(path, body = nil, initheader = {'Depth' => '0'}) request(Propfind.new(path, initheader), body) end |