You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: includes/functions-bindings-event-hubs-trigger-dotnet-isolated-types.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,16 +13,16 @@ When you want the function to process a single event, the Event Hubs trigger can
13
13
|`string`| The event as a string. Use when the event is simple text. |
14
14
|`byte[]`| The bytes of the event. |
15
15
| JSON serializable types | When an event contains JSON data, Functions tries to deserialize the JSON data into a plain-old CLR object (POCO) type. |
16
-
|[Azure.Messaging.EventHubs.EventData]|_(Preview<sup>1</sup>)_<br/>The event object.<br/>If you are migrating from any older versions of the Event Hubs SDKs, note that this version drops support for the legacy `Body` type in favor of [EventBody](/dotnet/api/azure.messaging.eventhubs.eventdata.eventbody).|
16
+
|[Azure.Messaging.EventHubs.EventData]<sup>1</sup>|The event object.<br/>If you are migrating from any older versions of the Event Hubs SDKs, note that this version drops support for the legacy `Body` type in favor of [EventBody](/dotnet/api/azure.messaging.eventhubs.eventdata.eventbody).|
17
17
18
18
When you want the function to process a batch of events, the Event Hubs trigger can bind to the following types:
19
19
20
20
| Type | Description |
21
21
| --- | --- |
22
22
|`string[]`| An array of events from the batch, as strings. Each entry represents one event. |
23
-
|`EventData[]`|_(Preview<sup>1</sup>)_<br/>An array of events from the batch, as instances of [Azure.Messaging.EventHubs.EventData]. Each entry represents one event. |
24
-
|`T[]` where `T` is a JSON serializable type|_(Preview<sup>1</sup>)_<br/>An array of events from the batch, as instances of a custom POCO type. Each entry represents one event. |
23
+
|`EventData[]` <sup>1</sup>|An array of events from the batch, as instances of [Azure.Messaging.EventHubs.EventData]. Each entry represents one event. |
24
+
|`T[]` where `T` is a JSON serializable type<sup>1</sup>|An array of events from the batch, as instances of a custom POCO type. Each entry represents one event. |
25
25
26
-
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.EventHubs 5.4.1-preview1 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.EventHubs/5.4.1-preview1) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types).
26
+
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.EventHubs 5.5.0 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.EventHubs/5.5.0) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types).
Copy file name to clipboardExpand all lines: includes/functions-bindings-storage-queue-trigger-dotnet-isolated-types.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,10 @@ The queue trigger can bind to the following types:
13
13
|`string`| The message content as a string. Use when the message is simple text.. |
14
14
|`byte[]`| The bytes of the message. |
15
15
| JSON serializable types | When a queue message contains JSON data, Functions tries to deserialize the JSON data into a plain-old CLR object (POCO) type. |
|[BinaryData]|_(Preview<sup>1</sup>)_<br/>The bytes of the message. |
16
+
|[QueueMessage]<sup>1</sup>|The message. |
17
+
|[BinaryData]<sup>1</sup>|The bytes of the message. |
18
18
19
-
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues 5.1.3-preview1 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues/5.1.3-preview1) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types).
19
+
<sup>1</sup> To use these types, you need to reference [Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues 5.2.0 or later](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues/5.2.0) and the [common dependencies for SDK type bindings](../articles/azure-functions/dotnet-isolated-process-guide.md#sdk-types).
0 commit comments