Modified 'Secure Connection'

This commit is contained in:
sta 2014-11-02 11:32:24 +09:00
parent 0de32bbacc
commit 1fc568c4e8

View File

@ -446,7 +446,7 @@ As a **WebSocket Server**, you should create an instance of the `WebSocketServer
```cs ```cs
var wssv = new WebSocketServer (4649, true); var wssv = new WebSocketServer (4649, true);
wssv.Certificate = 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 ### ### HTTP Authentication ###