I\'m new to Azure\'s function... I\'ve created a new timer function (will be fired every 30 minutes) and it has to perform a query on a URL, then push data on the buffer..
You need to go to Platform Features -> Application settings and add it there.
Add the setting under App settings.
Reading the setting can be done by first adding this at the top:
using System.Configuration;
And then reading a setting with:
string setting = ConfigurationManager.AppSettings["url"];
Where url
is your setting key. The setting
variable will contain your setting value.