Skip to content

Commit e2adb4c

Browse files
authored
Fix preview warning
1 parent eeee176 commit e2adb4c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/azure-web-pubsub/quickstart-serverless.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ In this tutorial, you learn how to:
141141
```bash
142142
func new -n index -t HttpTrigger
143143
```
144-
# [JavaScript Model v3](#tab/javascript-v3)
144+
# [JavaScript Model v4](#tab/javascript-v4)
145145

146146
- Update `src/functions/index.js` and copy following codes.
147147
```js

articles/azure-web-pubsub/reference-functions-bindings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ public static WebPubSubConnection Run(
352352
# [C#](#tab/csharp)
353353

354354
> [!NOTE]
355-
> Limited to the binding parameter types don't support a way to pass list nor array, the `WebPubSubConnection` is not fully supported with all the parameters server SDK has, especially `roles`, and also includes `groups` and `expiresAfter`. In the case customer needs to add roles or delay build the access token in the function, it's suggested to work with [server SDK for C#](/dotnet/api/overview/azure/messaging.webpubsub-readme?view=azure-dotnet).
355+
> Limited to the binding parameter types don't support a way to pass list nor array, the `WebPubSubConnection` is not fully supported with all the parameters server SDK has, especially `roles`, and also includes `groups` and `expiresAfter`. In the case customer needs to add roles or delay build the access token in the function, it's suggested to work with [server SDK for C#](/dotnet/api/overview/azure/messaging.webpubsub-readme).
356356
> ```cs
357357
> [FunctionName("WebPubSubConnectionCustomRoles")]
358358
> public static async Task<Uri> Run(
@@ -369,7 +369,7 @@ public static WebPubSubConnection Run(
369369
# [JavaScript Model v4](#tab/javascript-v4)
370370
371371
> [!NOTE]
372-
> Limited to the binding parameter types don't support a way to pass list nor array, the `WebPubSubConnection` is not fully supported with all the parameters server SDK has, especially `roles`, and also includes `groups` and `expiresAfter`. In the case customer needs to add roles or delay build the access token in the function, it's suggested to work with [server SDK for JavaScript](/javascript/api/overview/azure/web-pubsub?view=azure-node-latest).
372+
> Limited to the binding parameter types don't support a way to pass list nor array, the `WebPubSubConnection` is not fully supported with all the parameters server SDK has, especially `roles`, and also includes `groups` and `expiresAfter`. In the case customer needs to add roles or delay build the access token in the function, it's suggested to work with [server SDK for JavaScript](/javascript/api/overview/azure/web-pubsub).
373373
> ```js
374374
> const { app } = require('@azure/functions');
375375
> const { WebPubSubServiceClient } = require('@azure/web-pubsub');
@@ -387,7 +387,7 @@ public static WebPubSubConnection Run(
387387
# [JavaScript Model v3](#tab/javascript-v3)
388388
389389
> [!NOTE]
390-
> Limited to the binding parameter types don't support a way to pass list nor array, the `WebPubSubConnection` is not fully supported with all the parameters server SDK has, especially `roles`, and also includes `groups` and `expiresAfter`. In the case customer needs to add roles or delay build the access token in the function, it's suggested to work with [server SDK for JavaScript](/javascript/api/overview/azure/web-pubsub?view=azure-node-latest).
390+
> Limited to the binding parameter types don't support a way to pass list nor array, the `WebPubSubConnection` is not fully supported with all the parameters server SDK has, especially `roles`, and also includes `groups` and `expiresAfter`. In the case customer needs to add roles or delay build the access token in the function, it's suggested to work with [server SDK for JavaScript](/javascript/api/overview/azure/web-pubsub).
391391
>
392392
> Define input bindings in `function.json`.
393393
>

0 commit comments

Comments
 (0)