4. Køtrigger
Opprette kø
Lag funksjon som trigges av kø
Lag en melding og sende på køen
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
[FunctionName("MyQueueTriggerFunc")]
public static void Run([QueueTrigger("myqueue", Connection = "AzureWebJobsStorage")]string myQueueItem, ILogger log)
{
log.LogInformation($"C# Queue trigger function processed: {myQueueItem}");
}