Home > Mobile >  Azure Http Function with Output binding for a Queue
Azure Http Function with Output binding for a Queue

Time:11-13

I have Http Trigger function in .Net 5.0.

I added output binding to the function to a Queue by following this article:

enter image description here

It may be a small fix but haven't been able to figure it out. There are code snippets over the Web but no working example where I can see which nugget package I am missing. Any help will be appreciated.

CodePudding user response:

The "out-of-process" or "isolated" model requires that you install the following nuget package:

Microsoft.Azure.Functions.Worker.Extensions.Storage

Then, you'll be able to use the QueueOutput Attribute

  • Related