Package-level declarations
Types
Downloads url into the client's own file storage under targetFileName, where GetFile and DeleteFile can reach it afterwards. method, headers and body shape the request.
Sends an HTTP request to url with method, headers, body and an optional timeoutMillis, and emits the response downstream. This is the general-purpose way to talk to a backend from inside an event chain.
Stores the event's incomingData as the request body in the client's NetworkParametersHolder, so a later request in the chain picks it up instead of carrying the body on its own schema.
Stores the event's incomingData as the request headers in the client's NetworkParametersHolder, so a later request in the chain picks them up instead of carrying the headers on its own schema.
Stores the event's incomingData as the query parameters in the client's NetworkParametersHolder, so a later request in the chain picks them up instead of carrying the parameters on its own schema.
Stores the event's incomingData as the URL in the client's NetworkParametersHolder, so a later request in the chain picks it up instead of carrying the URL on its own schema.
Uploads the file carried in the event's incomingData to url with method, headers and contentType, reporting progress as it goes. Pair it with OpenFilePicker or GetFile using their PlatformFile output.