Modified a few for Example

This commit is contained in:
sta 2014-10-07 15:19:46 +09:00
parent 40e4df6ecf
commit fce7f3bc6a

View File

@ -11,12 +11,12 @@ namespace Example
{
/* Create a new instance of the WebSocket class.
*
* The WebSocket class inherits the System.IDisposable interface, so you can use
* the using statement. And the WebSocket connection has been closed with close
* status 1001 (going away) when the control leaves the using block.
* The WebSocket class inherits the System.IDisposable interface, so you can use the using
* statement. And the WebSocket connection is closed with close status 1001 (going away)
* when the control leaves the using block.
*
* If you would like to connect to the server with the secure connection, you should
* create the instance with the wss scheme WebSocket URL.
* If you would like to connect to the server with the secure connection, you should create
* the instance with the wss scheme WebSocket URL.
*/
using (var nf = new Notifier ())
using (var ws = new WebSocket ("ws://echo.websocket.org"))
@ -67,7 +67,12 @@ namespace Example
/* To validate the server certificate.
ws.ServerCertificateValidationCallback = (sender, certificate, chain, sslPolicyErrors) => {
ws.Log.Debug (String.Format ("\n{0}\n{1}", certificate.Issuer, certificate.Subject));
ws.Log.Debug (
String.Format (
"Certificate:\n- Issuer: {0}\n- Subject: {1}",
certificate.Issuer,
certificate.Subject));
return true; // If the server certificate is valid.
};
*/