class Net::HTTP::Lock
Class for representingWebDAV method LOCK:
require'net/http'uri =URI('http://example.com')hostname =uri.hostname# => "example.com"req =Net::HTTP::Lock.new(uri)# => #<Net::HTTP::Lock LOCK>res =Net::HTTP.start(hostname)do|http|http.request(req)end
SeeRequest Headers.
Related:
Net::HTTP#lock: sendsLOCKrequest, returns response object.