類別 Net::HTTP::Propfind

表示 WebDAV 方法 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

請參閱 要求標頭

相關

常數

METHOD
REQUEST_HAS_BODY
RESPONSE_HAS_BODY