Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 857 Bytes

functions-add-storage-binding-csharp-library-code.md

File metadata and controls

25 lines (16 loc) · 857 Bytes
author ms.service ms.topic ms.date ms.author
ggailey777
azure-functions
include
08/15/2021
glenga

Add code that uses the msg output binding object to create a queue message. Add this code before the method returns.

:::code language="csharp" range="28-32" source="~/functions-docs-csharp/functions-add-output-binding-storage-queue-cli/HttpExample.cs" :::

At this point, your function should look as follows:

:::code language="csharp" source="~/functions-docs-csharp/functions-add-output-binding-storage-queue-cli/HttpExample.cs" range="14-36":::

Replace the existing HttpExample class with the following code:

:::code language="csharp" source="~/functions-docs-csharp/functions-add-output-binding-storage-queue-isolated/HttpExample.cs" range="11-32":::