class Gem::Net::HTTP::Unlock
Class for representing WebDAV method UNLOCK:
require 'rubygems/vendor/net-http/lib/net/http' uri = Gem::URI('http://example.com') hostname = uri.hostname # => "example.com" req = Gem::Net::HTTP::Unlock.new(uri) # => #<Gem::Net::HTTP::Unlock UNLOCK> res = Gem::Net::HTTP.start(hostname) do |http| http.request(req) end
See Request Headers.
Related:
-
Gem::Net::HTTP#unlock
: sendsUNLOCK
request, returns response object.
Constants
- METHOD
- REQUEST_HAS_BODY
- RESPONSE_HAS_BODY