[Modify] Edit it

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

View File

@ -493,8 +493,9 @@ As a WebSocket server, you should create a new instance of the `WebSocketServer`
```csharp
var wssv = new WebSocketServer (5963, true);
wssv.SslConfiguration.ServerCertificate =
new X509Certificate2 ("/path/to/cert.pfx", "password for cert.pfx");
wssv.SslConfiguration.ServerCertificate = new X509Certificate2 (
"/path/to/cert.pfx", "password for cert.pfx"
);
```
### HTTP Authentication ###