Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1000 Bytes

functions-bindings-storage-queue-output-dotnet-isolated-types.md

File metadata and controls

25 lines (19 loc) · 1000 Bytes
author ms.service ms.topic ms.date ms.author
mattchenderson
azure-functions
include
07/10/2023
mahender

When you want the function to write a single message, the queue output binding can bind to the following types:

Type Description
string The message content as a string. Use when the message is simple text.
byte[] The bytes of the message.
JSON serializable types An object representing the content of a JSON message. Functions tries to serialize a plain-old CLR object (POCO) type into JSON data.

When you want the function to write multiple messages, the queue output binding can bind to the following types:

Type Description
T[] where T is one of the single message types An array containing content for multiple messages. Each entry represents one message.

For other output scenarios, create and use types from Azure.Storage.Queues directly.