Skip to content

Commit 891ae17

Browse files
committed
Fix blocking issues
1 parent f137034 commit 891ae17

15 files changed

+16
-17
lines changed

articles/azure-functions/create-first-function-vs-code-csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ adobe-target-content: ./create-first-function-vs-code-csharp-ieux
1515

1616
In this article, you use Visual Studio Code to create a C# function that responds to HTTP requests. After testing the code locally, you deploy it to the serverless environment of Azure Functions. This article creates an HTTP triggered function that runs on .NET 6.0. There's also a [CLI-based version](create-first-function-cli-csharp.md) of this article.
1717

18-
By default, this article shows you how to create C# functions that runs on .NET 6 [in the same process as the Functions host](functions-dotnet-class-library.md). These _in-process_ C# functions are only supported on Long Term Support (LTS) versions of .NET, such as .NET 6. To create C# functions on .NET 6 that can also run on .NET 5.0 and .NET Framework 4.8 (in preview) [in an isolated process](dotnet-isolated-process-guide.md), see the [alternate version of this article](create-first-function-vs-code-csharp.md?tabs=isolated-process).
18+
By default, this article shows you how to create C# functions that run on .NET 6 [in the same process as the Functions host](functions-dotnet-class-library.md). These _in-process_ C# functions are only supported on Long Term Support (LTS) versions of .NET, such as .NET 6. To create C# functions on .NET 6 that can also run on .NET 5.0 and .NET Framework 4.8 (in preview) [in an isolated process](dotnet-isolated-process-guide.md), see the [alternate version of this article](create-first-function-vs-code-csharp.md?tabs=isolated-process).
1919

2020
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
2121

2222
## Configure your environment
2323

2424
Before you get started, make sure you have the following requirements in place:
2525

26-
[!INCLUDE [functions-requirements-vs-code-csharp](../../includes/functions-requirements-vs-code-csharp.md)]
26+
[!INCLUDE [functions-requirements-visual-studio-code-csharp](../../includes/functions-requirements-visual-studio-code-csharp.md)]
2727

2828
## <a name="create-an-azure-functions-project"></a>Create your local project
2929

articles/azure-functions/create-first-function-vs-code-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Completing this quickstart incurs a small cost of a few USD cents or less in you
2828

2929
Before you get started, make sure you have the following requirements in place:
3030

31-
[!INCLUDE [functions-requirements-vs-code-java](../../includes/functions-requirements-vs-code-java.md)]
31+
[!INCLUDE [functions-requirements-visual-studio-code-java](../../includes/functions-requirements-visual-studio-code-java.md)]
3232

3333
## <a name="create-an-azure-functions-project"></a>Create your local project
3434

articles/azure-functions/create-first-function-vs-code-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ There's also a [CLI-based version](create-first-function-cli-node.md) of this ar
2525

2626
Before you get started, make sure you have the following requirements in place:
2727

28-
[!INCLUDE [functions-requirements-vs-code-node](../../includes/functions-requirements-vs-code-node.md)]
28+
[!INCLUDE [functions-requirements-visual-studio-code-node](../../includes/functions-requirements-visual-studio-code-node.md)]
2929

3030
## <a name="create-an-azure-functions-project"></a>Create your local project
3131

articles/azure-functions/create-first-function-vs-code-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ There's also a [CLI-based version](create-first-function-cli-powershell.md) of t
2121

2222
Before you get started, make sure you have the following requirements in place:
2323

24-
[!INCLUDE [functions-requirements-vs-code-powershell](../../includes/functions-requirements-vs-code-powershell.md)]
24+
[!INCLUDE [functions-requirements-visual-studio-code-powershell](../../includes/functions-requirements-visual-studio-code-powershell.md)]
2525

2626
## <a name="create-an-azure-functions-project"></a>Create your local project
2727

articles/azure-functions/create-first-function-vs-code-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ There's also a [CLI-based version](create-first-function-cli-python.md) of this
2525

2626
Before you begin, make sure that you have the following requirements in place:
2727

28-
[!INCLUDE [functions-requirements-vs-code-python](../../includes/functions-requirements-vs-code-python.md)]
28+
[!INCLUDE [functions-requirements-visual-studio-code-python](../../includes/functions-requirements-visual-studio-code-python.md)]
2929

3030
## <a name="create-an-azure-functions-project"></a>Create your local project
3131

articles/azure-functions/event-grid-how-tos.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ You can create an event subscription either from the [Azure portal](https://port
8888

8989
For functions that you develop in the Azure portal with the Event Grid trigger, select **Integration** then choose the **Event Grid Trigger** and select **Create Event Grid subscription**.
9090

91-
:::image type="content" source="media/functions-bindings-event-grid/portal-sub-create.png" alt-text="Connect a new event subscription to trigger in the portal.":::
91+
:::image type="content" source="media/functions-bindings-event-grid/portal-sub-create.png" alt-text="Screenshot of connecting to a new event subscription to trigger in the portal.":::
9292

9393
When you select this link, the portal opens the **Create Event Subscription** page with the current trigger endpoint already defined.
9494

95-
:::image type="content" source="media/functions-bindings-event-grid/endpoint-url.png" alt-text="Create event subscription with function endpoint already defined" :::
95+
:::image type="content" source="media/functions-bindings-event-grid/endpoint-url.png" alt-text="Screenshot of creating an event subscription with the function endpoint already defined." :::
9696

9797
For more information about how to create subscriptions by using the Azure portal, see [Create custom event - Azure portal](../event-grid/custom-event-quickstart-portal.md) in the Event Grid documentation.
9898

@@ -126,7 +126,7 @@ To test an Event Grid trigger locally, you have to get Event Grid HTTP requests
126126

127127
When you're done testing, you can use the same subscription for production by updating the endpoint. Use the [`az eventgrid event-subscription update`](/cli/azure/eventgrid/event-subscription#az-eventgrid-event-subscription-update) Azure CLI command.
128128

129-
You can also use the *ngrok* utility to forward remote requests to your locally running functions. For more information, see see [this tutorial](./functions-event-grid-blob-trigger.md#start-local-debugging).
129+
You can also use the *ngrok* utility to forward remote requests to your locally running functions. For more information, see [this tutorial](./functions-event-grid-blob-trigger.md#start-local-debugging).
130130

131131
### Create a viewer web app
132132

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Azure Event Grid trigger for Azure Functions
33
description: Learn to run code when Event Grid events in Azure Functions are dispatched.
4-
54
ms.topic: reference
65
ms.date: 03/04/2022
76
ms.devlang: csharp, java, javascript, powershell, python
@@ -11,7 +10,7 @@ zone_pivot_groups: programming-languages-set-functions-lang-workers
1110

1211
# Azure Event Grid trigger for Azure Functions
1312

14-
Use the function trigger to respond to an event sent by an [event grid source](../event-grid/overview.md). You must have an event subscription to the source to recieve events. To learn how to create an event subscription, see [Create a subscription](event-grid-how-tos.md#create-a-subscription). For information on binding setup and configuration, see the [overview](./functions-bindings-event-grid.md).
13+
Use the function trigger to respond to an event sent by an [Event Grid source](../event-grid/overview.md). You must have an event subscription to the source to receive events. To learn how to create an event subscription, see [Create a subscription](event-grid-how-tos.md#create-a-subscription). For information on binding setup and configuration, see the [overview](./functions-bindings-event-grid.md).
1514

1615
> [!NOTE]
1716
> Event Grid triggers aren't natively supported in an internal load balancer App Service Environment (ASE). The trigger uses an HTTP request that can't reach the function app without a gateway into the virtual network.
@@ -223,7 +222,7 @@ Upon arrival, the event's JSON payload is de-serialized into the ```EventSchema`
223222
}
224223
```
225224

226-
In the [Java functions runtime library](/java/api/overview/azure/functions/runtime), use the `EventGridTrigger` annotation on parameters whose value would come from EventGrid. Parameters with these annotations cause the function to run when an event arrives. This annotation can be used with native Java types, POJOs, or nullable values using `Optional<T>`.
225+
In the [Java functions runtime library](/java/api/overview/azure/functions/runtime), use the `EventGridTrigger` annotation on parameters whose value would come from Event Grid. Parameters with these annotations cause the function to run when an event arrives. This annotation can be used with native Java types, POJOs, or nullable values using `Optional<T>`.
227226
::: zone-end
228227
::: zone pivot="programming-language-javascript"
229228
The following example shows a trigger binding in a *function.json* file and a [JavaScript function](functions-reference-node.md) that uses the binding.

articles/azure-functions/functions-event-grid-blob-trigger.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ Earlier versions of the Blob Storage trigger for Azure Functions polled the cont
2424
## Prerequisites
2525

2626
::: zone pivot="programming-language-csharp"
27-
[!INCLUDE [functions-requirements-vs-code-csharp](../../includes/functions-requirements-vs-code-csharp.md)]
27+
[!INCLUDE [functions-requirements-visual-studio-code-csharp](../../includes/functions-requirements-visual-studio-code-csharp.md)]
2828
::: zone-end
2929
::: zone pivot="programming-language-javascript"
30-
[!INCLUDE [functions-requirements-vs-code-node](../../includes/functions-requirements-vs-code-node.md)]
30+
[!INCLUDE [functions-requirements-visual-studio-code-node](../../includes/functions-requirements-visual-studio-code-node.md)]
3131
::: zone-end
3232
::: zone pivot="programming-language-powershell"
33-
[!INCLUDE [functions-requirements-vs-code-powershell](../../includes/functions-requirements-vs-code-powershell.md)]
33+
[!INCLUDE [functions-requirements-visual-studio-code-powershell](../../includes/functions-requirements-visual-studio-code-powershell.md)]
3434
::: zone-end
3535
::: zone pivot="programming-language-python"
36-
[!INCLUDE [functions-requirements-vs-code-python](../../includes/functions-requirements-vs-code-python.md)]
36+
[!INCLUDE [functions-requirements-visual-studio-code-python](../../includes/functions-requirements-visual-studio-code-python.md)]
3737
::: zone-end
3838
::: zone pivot="programming-language-java"
39-
[!INCLUDE [functions-requirements-vs-code-java](../../includes/functions-requirements-vs-code-java.md)]
39+
[!INCLUDE [functions-requirements-visual-studio-code-java](../../includes/functions-requirements-visual-studio-code-java.md)]
4040
::: zone-end
4141
+ The [ngrok](https://ngrok.com/) utility, which provides a way for Azure to call into your locally running function.
4242

0 commit comments

Comments
 (0)