Azure WebJobs SDK: Queues

Microsoft Azure QuickStarts

This will show you how to perform common scenarios using the Microsoft Azure Queue storage service using the Microsoft Azure WebJobs SDK. The scenarios covered include triggering a function when a new message comes on a queue, sending a message on a queue.

In this sample, the Program class starts the JobHost and creates the demo data. The Functions class contains methods that will be invoked when when messages are placed on the queues, based on the attributes in the method headers.

If you don't have a Microsoft Azure subscription you can get a FREE trial account here.

Running this sample

  1. Create a Storage Account through the Portal or Visual Studio
  2. Open app.config and paste your Storage connection string into the AzureWebJobsDashboard and AzureWebJobsStorage connection string settings.
  3. Run the project

More information