azure-webjobs-sdk-samples/BasicSamples/BlobOperations
Mathew Charles d94ef1b7a7 Updating samples to target v1.1.1 RTM 2016-01-13 14:09:34 -08:00
..
Properties Update samples to 0.6.0-beta 2014-09-12 23:06:58 -07:00
App.config Updated samples to 1.0.0-rc1 2014-09-22 16:06:47 -07:00
BlobOperations.csproj Updating samples to target v1.1.1 RTM 2016-01-13 14:09:34 -08:00
Functions.cs Fixed a typo 2015-11-05 14:03:15 +02:00
Program.cs Moving to latest SDK and adding a DisableAttribute sample. 2015-10-20 12:29:29 -07:00
ReadMe.txt Samples for 0.4.0-beta 2014-08-21 09:54:06 -07:00
packages.config Updating samples to target v1.1.1 RTM 2016-01-13 14:09:34 -08:00

ReadMe.txt

Microsoft Azure WebJobs SDK Table Sample
-----------------------------------

This sample demonstrates blob bindings and operations with Microsoft Azure WebJobs SDK. The functions
are triggered when a new blob is created in the "input" container of the Azure Storage Account or
when a new queue message is added to the "persons" queue.

In order to run the sample, you need to set the Microsoft Azure Storage connection strings in the
App.config file or environment variables.
Example (app.config):
  <add name="AzureWebJobsDashboard" connectionString="DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY" />
  <add name="AzureWebJobsStorage" connectionString="DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY" />
Example (environment variables):
  SET AzureWebJobsDashboard=DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY
  SET AzureWebJobsStorage=DefaultEndpointsProtocol=https;AccountName=NAME;AccountKey=KEY

For more information about the WebJobs feature of Microsoft Azure Web Sites, 
see http://go.microsoft.com/fwlink/?LinkId=390226