Skip to content

Commit e533c2f

Browse files
committed
move CloudEvents info to version tabs
1 parent 13e978a commit e533c2f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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

includes/functions-event-grid-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Event Grid is an Azure service that sends HTTP requests to notify you about even
1010

1111
Event *handlers* receive and process events. Azure Functions is one of several [Azure services that have built-in support for handling Event Grid events](../articles/event-grid/overview.md#event-handlers). Functions provides an Event Grid trigger, which invokes a function when an event is received from Event Grid. A similar output binding can be used to send events from your function to an [Event Grid custom topic](../articles/event-grid/post-to-custom-topic.md).
1212

13-
You can also use an HTTP trigger to handle Event Grid Events. To learn more, see [Receive events to an HTTP endpoint](../articles/event-grid/receive-events.md). We recommend using the Event Grid trigger over HTTP trigger. With Event Grid extension 2.x and earlier versions, you can't use an Event Grid trigger for an Azure Functions app when the event is delivered in the [CloudEvents schema](../event-grid/cloudevents-schema.md#azure-functions).
13+
You can also use an HTTP trigger to handle Event Grid Events. To learn more, see [Receive events to an HTTP endpoint](../articles/event-grid/receive-events.md). We recommend using the Event Grid trigger over HTTP trigger.

0 commit comments

Comments
 (0)