@@ -62,7 +62,7 @@ The following steps set up [Azure storage](../storage/common/storage-introductio
62
62
63
63
1 . In the [ Azure portal] ( https://portal.azure.com ) , sign in with your Azure account credentials.
64
64
65
- 1 . [ Follow these steps to create a storage account] ( ../storage/common/storage-account-create.md# tabs=azure-portal ) unless you already have one.
65
+ 1 . [ Follow these steps to create a storage account] ( ../storage/common/storage-account-create.md? tabs=azure-portal ) unless you already have one.
66
66
67
67
On the ** Basics** tab, provide the following information:
68
68
@@ -197,7 +197,11 @@ For more information, see [Create your first function in the Azure portal](../az
197
197
198
198
1 . On the function app menu, select ** Overview** . On the ** Functions** tab, select ** Create** .
199
199
200
- 1 . On the ** Create function** pane, select ** HTTP trigger** > ** Next** .
200
+ 1 . On the ** Create function** pane, select ** HTTP trigger: C#** > ** Next** .
201
+
202
+ > [ !NOTE]
203
+ >
204
+ > If you don't see the C# version, make sure to
201
205
202
206
1 . Provide the following information for your function, and select ** Create** :
203
207
@@ -217,7 +221,7 @@ For more information, see [Create your first function in the Azure portal](../az
217
221
using Newtonsoft .Json ;
218
222
using System .Text .RegularExpressions ;
219
223
220
- public static async Task < IActionResult > Run (HttpRequest req , ILogger log )
224
+ public static async Task < IActionResult > Run (HttpRequest req , ILogger log )
221
225
{
222
226
log .LogInformation (" HttpWebhook triggered" );
223
227
@@ -230,7 +234,7 @@ For more information, see [Create your first function in the Azure portal](../az
230
234
updatedBody = updatedBody .Replace (@" " , " " );
231
235
232
236
// Return cleaned text
233
- return (ActionResult )new OkObjectResult (new { updatedBody });
237
+ return (ActionResult )new OkObjectResult (new {updatedBody });
234
238
}
235
239
```
236
240
0 commit comments