Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,157 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
[Function("myFunc")]
public async Task RunProd(
[BlobTrigger("files/{name}", Connection = "Storage:ConnectionString",
Source = BlobTriggerSource.EventGrid)] BlobClient blobClient,
string name)
```* in my storage created an event with webhook with the url that the guide told me to use
- the connection is succesful and when I upload a file to my storage I see it in my **Event Subscriptions chart**
- The problem is that the code is never being executed as I do not se my function is being invocated neither