Skip to content

Commit 1dd8540

Browse files
authored
update
1 parent 3f20473 commit 1dd8540

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/azure-functions/functions-bindings-signalr-service-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The following sample shows a C# function that receives a message event from clie
3636
:::code language="csharp" source="~/azure-functions-dotnet-worker/samples/Extensions/SignalR/SignalRTriggerFunctions.cs" id="snippet_on_message":::
3737

3838
> [!IMPORTANT]
39-
> Class based model of SignalR Service bindings in C# isolated worker doesn't optimize how you write SignalR triggers due to the limitation of C# worker model. You can use class based model for SignalR input binding and output bindings. For more information about class based model, see [Class based model](../azure-signalr/signalr-concept-serverless-development-config.md#class-based-model).
39+
> Class based model of SignalR Service bindings in C# isolated worker doesn't optimize how you write SignalR triggers due to the limitation of C# worker model. For more information about class based model, see [Class based model](../azure-signalr/signalr-concept-serverless-development-config.md#class-based-model).
4040
4141
# [In-process model](#tab/in-process)
4242

articles/azure-signalr/signalr-concept-serverless-development-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,10 @@ public class Functions : ServerlessHub<IChatClient>
173173
}
174174
```
175175

176-
> [!IMPORTANT]
176+
> [!NOTE]
177177
> You can get a complete project sample from [GitHub](https://github.com/aspnet/AzureSignalR-samples/tree/main/samples/DotnetIsolated-ClassBased/).
178178
179-
### Unified connection string setting in one place.
179+
### Unified connection string setting in one place
180180

181181
You might have noticed the `SignalRConnection` attribute used on serverless hub classes. It looks like this:
182182
```cs

0 commit comments

Comments
 (0)