Top "Azure-functions" questions

Azure Functions is an event-driven serverless compute platform in Azure and Azure Stack.

How can I use Application Insights locally with Azure Functions?

I'm using the interface ILogger to log events inside my Azure functions. I can publish it in Azure and connect …

azure azure-functions azure-application-insights
Disable Property of Azure Functions not working in Visual Studio 2017

I have Azure function with timer trigger. public static void Run([TimerTrigger("0 */15 * * * *"), Disable("True")]TimerInfo myTimer, TraceWriter log) Here the …

c# azure azure-functions timer-trigger
Azure Function: Publish fails with message "Web Deploy cannot modify the file on the Destination because it is locked by an external process."

I am developing an Azure Functions Project and when I publish first time, OK. Then I publish again, this Error …

azure-functions
How can I bind output values to my async Azure Function?

How can I bind my outputs to an async function? The usual method of setting the parameter to out doesn't …

c# azure asynchronous azure-functions
Deleting Azure Function Published by Visual Studio

I have published an Azure Function through visual studio. Now I want to delete the published Azure function and the …

azure azure-functions azure-functions-runtime
How to run Headless Chrome in Azure Cloud Service or Azure Functions?

I am trying to use Headless Chrome to generate a PDF file from a complex HTML file (contains images, SVGs, …

google-chrome azure azure-functions azure-cloud-services google-chrome-headless
Azure Function - PowerShell, installing az cmdlet :: The term 'az' is not recognized as the name of a cmdlet

I am attempting to install the az cmdlet onto Kudu for my Azure Function. I am currently following this guide: …

powershell azure azure-functions azure-cli
Azure Http Triggers function calls

I would like a Http Trigger function to call another Http Trigger function. Basically, I am trying to access via …

c# azure azure-functions azure-function-app-proxy
Get root directory of Azure Function App v2

I build an Azure Function App (v2). Configuration tasks necessary for all functions are done in a Setup class that …

c# azure-functions
How do you include references to external assemblies in Azure Functions

I tried the following: using System; using Newtonsoft.Json using Newtonsoft.Linq public static void Run(string myEventHubMessage, out string …

azure-functions