I’m trying to deliver only one Azure Function to listen multiple Blobs.
For this I choose to publish events when something happens on my storage to an event grid.
Then I have a function (isolated) which is trigger by the [EventGridTrigger]
.
All works well, nevertheless, I am not able to get back the headers I added in de “delivery properties” of my event subscription.
I am only able to inject a CloudEvent
, and the FunctionContext which doesn’t carries anything interesting.
Is it possible ?
Thanks