From 1fc568c4e8d2b632f9247dab572a4f4b923b4ecf Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 2 Nov 2014 11:32:24 +0900 Subject: [PATCH] Modified 'Secure Connection' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 60981fab..5da5d710 100644 --- a/README.md +++ b/README.md @@ -446,7 +446,7 @@ As a **WebSocket Server**, you should create an instance of the `WebSocketServer ```cs 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 ###