Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 997 Bytes

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

File metadata and controls

28 lines (18 loc) · 997 Bytes
author ms.service ms.topic ms.date ms.author ms.custom
ggailey777
azure-functions
include
06/10/2022
glenga
devdivchpfy22

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":::

[!INCLUDE functions-in-process-model-retirement-note]

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 must look as follows:

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