Update configuration.md (#22264)

pull/22265/head
Istvan Marki 2021-05-11 15:39:26 +02:00 committed by GitHub
parent c0162c1981
commit 59c9c4f346
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ As an example, to configure the serializer to not change the casing of property
```csharp ```csharp
services.AddSignalR() services.AddSignalR()
.AddJsonProtocol(options => { .AddJsonProtocol(options => {
options.PayloadSerializerOptions.PropertyNamingPolicy = null options.PayloadSerializerOptions.PropertyNamingPolicy = null;
}); });
``` ```