How can i put the CRON expression in a Function app parameter in the local.settings.json file?
I have a function app that I run and one of the functions is as follows:
Is there an equivalent framework to Azure Functions for .Net/C#
Maybe this question is not a good format for this site, but the people that know the answer should be here…
Call azure http function but don’t wait for it’s response
using (var httpClient = new HttpClient()) { MultipartFormDataContent formData = new MultipartFormDataContent { { new StreamContent(file.OpenReadStream()), “file”, file.FileName } }; _ = httpClient.PostAsync(“azure http function url here”, formData); } This is the code I’m working on, it is not waiting for the response to complete now. But the problem is, the request never arrives at […]
Registering BlobContainerClient and Injecting into Isolated Function
I am using net8 Azure Functions with Isolated model.