findAllProps<P extends PropfindRequestProp> abstract method

Future<WebDavStdRequest<PropfindAllRequestParam<P>>> findAllProps<P extends PropfindRequestProp>({
  1. Iterable<P> includes,
  2. Depth? depth,
})

Retrieves all properties values defined on resource (defined in RFC4918, at a minimum) identified by from.

Use includes to obtain additional live properties.

see: https://datatracker.ietf.org/doc/html/rfc4918#section-9.1 and https://datatracker.ietf.org/doc/html/rfc4918#section-9.1.5

Implementation

Future<WebDavStdRequest<PropfindAllRequestParam<P>>>
    findAllProps<P extends PropfindRequestProp>(
        {Iterable<P> includes, Depth? depth});