The Azure SDK (for Queues) mentions a specific list of parameters that are allowed to be passed into a webjob Function.
e.g.
You can get the following message properties by adding parameters to the method signature:
DateTimeOffset expirationTime
DateTimeOffset insertionTime
DateTimeOffset nextVisibleTime
string queueTrigger
(contains message text)
string id
string popReceipt
int dequeueCount
If you want to work directly with the Azure storage API, you can also add a
CloudStorageAccount
parameter.
I'm trying to find how this is done in their source code because I want to try playing around with passing my own parameters in.
Can anyone please explain / link how this is possible / done?