WEBDAV Protocols Support

Hi Team,

Does gatling support any of following WEBDAV Protocols. i.e


WebDAV extends the set of standard HTTP verbs and headers allowed for [request methods](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods). The added verbs include:

<dl><dt>COPY</dt><dd>copy a resource from one [URI](https://en.wikipedia.org/wiki/Uniform_resource_identifier) to another</dd><dt>LOCK</dt><dd>put a [lock](https://en.wikipedia.org/wiki/Lock_(computer_science)) on a resource. WebDAV supports both shared and exclusive locks.</dd><dt>MKCOL</dt><dd>create collections (a.k.a. a [directory](https://en.wikipedia.org/wiki/Folder_(computing)))</dd><dt>MOVE</dt><dd>move a resource from one [URI](https://en.wikipedia.org/wiki/Uniform_resource_identifier) to another</dd><dt>PROPFIND</dt><dd>retrieve properties, stored as [XML](https://en.wikipedia.org/wiki/XML), from a [web resource](https://en.wikipedia.org/wiki/Web_resource). It is also [overloaded](https://en.wikipedia.org/wiki/Method_overloading) to allow one to retrieve the collection structure (also known as directory hierarchy) of a remote system.</dd><dt>PROPPATCH</dt><dd>change and delete multiple properties on a resource in a single [atomic act](https://en.wikipedia.org/wiki/Atomic_commit)</dd><dt>UNLOCK</dt><dd>remove a lock from a resource```</dd></dl>

You can pass your own HTTP method:
https://gatling.io/docs/current/http/http_request/#method-and-url

Is there any example?