class Net::HTTP::Propfind
Klasse zur Darstellung der WebDAV-Methode PROPFIND
require 'net/http' uri = URI('http://example.com') hostname = uri.hostname # => "example.com" req = Net::HTTP::Propfind.new(uri) # => #<Net::HTTP::Propfind PROPFIND> res = Net::HTTP.start(hostname) do |http| http.request(req) end
Siehe Request Headers.
Verwandt
-
Net::HTTP#propfind: sendetPROPFIND-Anfrage, gibt Antwortobjekt zurück.