Represents parameters for the MKCOL WebDAV method.
 /// <summary>
 /// Creates a new collection resource at the location specified by the request URI.
 /// </summary>
 /// <param name="requestUri">A string that represents the request URI.</param>
 /// <param name="parameters">Parameters of the MKCOL operation.</param>
 /// <returns>An instance of <see cref="WebDavResponse" />.</returns>
 public WebDavResponse Mkcol(string requestUri, MkColParameters parameters)
 {
     return(Mkcol(CreateUri(requestUri), parameters));
 }