I have configured a blob storage event subscription to be raised when a file is uploaded into an Azure storage account and have created an EventGridTrigger type function app to consume the event.
[FunctionName("DataImport")]
public void Run([EventGridTrigger]EventGridEvent eventGridEvent)
I can set delivery properties within the portal subscription configuration which works for passing through a known reference that the function app needs.
However, I can find no documentation that tells me how to access the http request object within the function app. I have tried adding HttpRequest
to the function parameters but that just fails when the function is initiated.
How can I access the delivery properties within the function app?