Skip to content

Commit 1be34a4

Browse files
authored
Merge pull request #202708 from ggailey777/mikeurnun
(Azure CXP) Clarifies CloudEvents support
2 parents eb5c561 + acf56c7 commit 1be34a4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/azure-functions/functions-bindings-event-grid.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ zone_pivot_groups: programming-languages-set-functions-lang-workers
1212

1313
This reference shows how to connect to Azure Event Grid using Azure Functions triggers and bindings.
1414

15-
[!INCLUDE [functions-event-grid-intro](../../includes/functions-event-grid-intro.md)]
15+
[!INCLUDE [functions-event-grid-intro](../../includes/functions-event-grid-intro.md)]
1616

1717
| Action | Type |
1818
|---------|---------|
@@ -51,13 +51,13 @@ Add this version of the extension to your project by installing the [NuGet packa
5151

5252
# [Extension v2.x](#tab/extensionv2/in-process)
5353

54-
Supports the default Event Grid binding parameter type of [Microsoft.Azure.EventGrid.Models.EventGridEvent](/dotnet/api/microsoft.azure.eventgrid.models.eventgridevent).
54+
Supports the default Event Grid binding parameter type of [Microsoft.Azure.EventGrid.Models.EventGridEvent](/dotnet/api/microsoft.azure.eventgrid.models.eventgridevent). Event Grid extension versions earlier than 3.x don't support [CloudEvents schema](../event-grid/cloudevents-schema.md#azure-functions). To consume this schema, instead use an HTTP trigger.
5555

5656
Add the extension to your project by installing the [NuGet package], version 2.x.
5757

5858
# [Functions 1.x](#tab/functionsv1/in-process)
5959

60-
Functions 1.x apps automatically have a reference to the [Microsoft.Azure.WebJobs](https://www.nuget.org/packages/Microsoft.Azure.WebJobs) NuGet package, version 2.x.
60+
Functions 1.x apps automatically have a reference to the [Microsoft.Azure.WebJobs](https://www.nuget.org/packages/Microsoft.Azure.WebJobs) NuGet package, version 2.x. Event Grid extension versions earlier than 3.x don't support [CloudEvents schema](../event-grid/cloudevents-schema.md#azure-functions). To consume this schema, instead use an HTTP trigger.
6161

6262
The Event Grid output binding is only available for Functions 2.x and higher.
6363

@@ -67,7 +67,7 @@ Add the extension to your project by installing the [NuGet package](https://www.
6767

6868
# [Extension v2.x](#tab/extensionv2/isolated-process)
6969

70-
Add the extension to your project by installing the [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.EventGrid), version 2.x.
70+
Add the extension to your project by installing the [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.EventGrid), version 2.x. Event Grid extension versions earlier than 3.x don't support [CloudEvents schema](../event-grid/cloudevents-schema.md#azure-functions). To consume this schema, instead use an HTTP trigger.
7171

7272
# [Functions 1.x](#tab/functionsv1/isolated-process)
7373

@@ -83,13 +83,13 @@ You can install this version of the extension in your function app by registerin
8383

8484
# [Extension v2.x](#tab/extensionv2/csharp-script)
8585

86-
Supports the default Event Grid binding parameter type of [Microsoft.Azure.EventGrid.Models.EventGridEvent](/dotnet/api/microsoft.azure.eventgrid.models.eventgridevent).
86+
Supports the default Event Grid binding parameter type of [Microsoft.Azure.EventGrid.Models.EventGridEvent](/dotnet/api/microsoft.azure.eventgrid.models.eventgridevent). Event Grid extension versions earlier than 3.x don't support [CloudEvents schema](../event-grid/cloudevents-schema.md#azure-functions). To consume this schema, instead use an HTTP trigger.
8787

8888
You can install this version of the extension in your function app by registering the [extension bundle], version 2.x.
8989

9090
# [Functions 1.x](#tab/functionsv1/csharp-script)
9191

92-
Functions 1.x apps automatically have a reference to the [Microsoft.Azure.WebJobs](https://www.nuget.org/packages/Microsoft.Azure.WebJobs) NuGet package, version 2.x.
92+
Functions 1.x apps automatically have a reference to the [Microsoft.Azure.WebJobs](https://www.nuget.org/packages/Microsoft.Azure.WebJobs) NuGet package, version 2.x. Event Grid extension versions earlier than 3.x don't support [CloudEvents schema](../event-grid/cloudevents-schema.md#azure-functions). To consume this schema, instead use an HTTP trigger.
9393

9494
The Event Grid output binding is only available for Functions 2.x and higher.
9595

@@ -113,11 +113,11 @@ To learn more, see [Update your extensions].
113113

114114
# [Bundle v2.x](#tab/extensionv2)
115115

116-
You can install this version of the extension in your function app by registering the [extension bundle], version 2.x.
116+
You can install this version of the extension in your function app by registering the [extension bundle], version 2.x. Event Grid extension versions earlier than 3.x don't support [CloudEvents schema](../event-grid/cloudevents-schema.md#azure-functions). To consume this schema, instead use an HTTP trigger.
117117

118118
# [Functions 1.x](#tab/functionsv1)
119119

120-
The Event Grid output binding is only available for Functions 2.x and higher.
120+
The Event Grid output binding is only available for Functions 2.x and higher. Event Grid extension versions earlier than 3.x don't support [CloudEvents schema](../event-grid/cloudevents-schema.md#azure-functions). To consume this schema, instead use an HTTP trigger.
121121

122122
---
123123

0 commit comments

Comments
 (0)