Skip to content

Commit 57141a3

Browse files
authored
Patch SignalR code example (#17754)
1 parent 6609cee commit 57141a3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

aspnetcore/signalr/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to configure ASP.NET Core SignalR apps.
55
monikerRange: '>= aspnetcore-2.1'
66
ms.author: bradyg
77
ms.custom: mvc
8-
ms.date: 12/10/2019
8+
ms.date: 04/12/2020
99
no-loc: [SignalR]
1010
uid: signalr/configuration
1111
---
@@ -25,7 +25,7 @@ As an example, to configure the serializer to not change the casing of property
2525
```csharp
2626
services.AddSignalR()
2727
.AddJsonProtocol(options => {
28-
options.PayloadSerializerOptions.PropertyNamingPolicy = null
28+
options.PayloadSerializerOptions.PropertyNamingPolicy = null;
2929
});
3030
```
3131

@@ -1085,4 +1085,4 @@ HubConnection hubConnection = HubConnectionBuilder.create("https://example.com/m
10851085
* <xref:signalr/messagepackhubprotocol>
10861086
* <xref:signalr/supported-platforms>
10871087

1088-
::: moniker-end
1088+
::: moniker-end

0 commit comments

Comments
 (0)