[Modify] Edit it

This commit is contained in:
sta 2022-02-04 19:40:00 +09:00
parent f93a1890e4
commit 5e43180aaa

View File

@ -457,11 +457,7 @@ As a WebSocket server, if you would like to ignore the extensions requested from
```csharp
wssv.AddWebSocketService<Chat> (
"/Chat",
() =>
new Chat () {
// To ignore the extensions requested from a client.
IgnoreExtensions = true
}
s => s.IgnoreExtensions = true // To ignore the extensions requested from a client.
);
```