propfind method
Future<WebDavMultistatus>
propfind(
- PathUri path, {
- WebDavPropWithoutValues? prop,
- WebDavDepth? depth,
Retrieves the props for the resource at path
.
Optionally populates the given prop
s on the returned resources.
depth
can be used to limit scope of the returned resources.
See:
- http://www.webdav.org/specs/rfc2518.html#METHOD_PROPFIND for more information.
- propfind_Request for the request sent by this method.
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);
}