propfind method

Future<WebDavMultistatus> propfind(
  1. PathUri path, {
  2. WebDavPropWithoutValues? prop,
  3. WebDavDepth? depth,
})

Retrieves the props for the resource at path.

Optionally populates the given props on the returned resources. depth can be used to limit scope of the returned resources. See:

Implementation

Future<WebDavMultistatus> propfind(
  PathUri path, {
  WebDavPropWithoutValues? prop,
  WebDavDepth? depth,
}) async {
  final request = propfind_Request(
    path,
    prop: prop,
    depth: depth,
  );

  final response = await csrfClient.send(request);
  return const WebDavResponseConverter().convert(response);
}