Top "Azure-functions" questions

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

Target .NET Core 2.0 with Azure Functions in Visual Studio 2017

Since Microsoft has released .NET Core 2.0 for Azure Functions a few days ago, I'm trying to understand how to create …

azure azure-functions
Error while executing test, if using CreateResponse extention method to return Azure Function HttpResonseMessage

My Azure Function code is like below public static class MyHttpTriggerFunction { public static async Task<HttpResponseMessage> Run([HttpTrigger(…

c# unit-testing azure visual-studio-2017 azure-functions
When I am running azure HTTP Trigger function i am getting 401 unauthorized

I am trying to run Azure HTTP Trigger Azure Function and I am receiving a 401 Unauthorized. It was working fine …

azure azure-functions
OpenAPI (aka Swagger) in Azure Functions V2

I'm creating a V2 Function App and want to use Swagger/Open API for docs, however it is not yet …

azure-devops swagger azure-functions openapi
Azure Timer Trigger: Cron expression for every hour on the hour

Whats the cron expression for every hour on the hour? I tried this '0 0 * ? * *' but it threw an error …

azure cron azure-functions timer-trigger
How to get client IP address in Azure Functions C#?

I'm writing a function in C# using Azure Functions and need to get the ip address of the client that …

azure azure-functions
How to "trick" Azure Function into running longer than 10 minutes

Azure Functions have a time limit of 10 minutes. Suppose I have a long-running task such as downloading a file that …

c# azure azure-functions azure-blob-storage
Azure Functions - can't be invoked from Azure WebJobs SDK

So I've been trying to create a simple azure function, that would be an http trigger "CreateUser". I did an …

c# azure azure-functions azure-compute-emulator
Azure Functions binding redirect

Is it possible to include a web.config or app.config file in the azure functions folder structure to allow …

c# visual-studio-2017 azure-functions assembly-binding-redirect azure-functions-runtime
Including a file when I publish my Azure function in Visual Studio

I know this seems like a simple thing but I can't find any help online. I want to include a …

c# visual-studio azure azure-functions