The older Azure Function gives access to HttpRequest, which allows us to access the uploaded files via req.Form.Files etc.
The isolated .NET5 Azure Function uses HttpRequestData instead, which does not give access to the Form. How do I extract the uploaded files posted to the function?

