options method

Future<WebDavOptions> options()

Gets the WebDAV capabilities of the server.

See:

Implementation

Future<WebDavOptions> options() async {
  final request = options_Request();

  final response = await csrfClient.send(request);
  return parseWebDavOptions(response.headers);
}