From 88e224384f40dbdb902e20475976bfa6d9a97422 Mon Sep 17 00:00:00 2001 From: Adrien JUND Date: Wed, 29 Oct 2014 11:57:34 +0100 Subject: [PATCH] Add some xml doc comments to new classes. Move your new classes under the WebSocketSharp.Net namespace. And move ServerSslAuthConfiguration.cs to Net folder. Stay ToolsVersion="3.5" in websocket-sharp.csproj --- websocket-sharp/Net/ClientSslAuthConfiguration.cs | 6 +++++- .../{Server => Net}/ServerSslAuthConfiguration.cs | 6 +++++- websocket-sharp/websocket-sharp.csproj | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) rename websocket-sharp/{Server => Net}/ServerSslAuthConfiguration.cs (96%) diff --git a/websocket-sharp/Net/ClientSslAuthConfiguration.cs b/websocket-sharp/Net/ClientSslAuthConfiguration.cs index 0a518eb3..d5a63a15 100644 --- a/websocket-sharp/Net/ClientSslAuthConfiguration.cs +++ b/websocket-sharp/Net/ClientSslAuthConfiguration.cs @@ -36,8 +36,12 @@ using System.Security.Authentication; using System.Security.Cryptography.X509Certificates; -namespace WebSocketSharp +namespace WebSocketSharp.Net { + /// + /// Stores the parameters used in configuring + /// as a client. + /// public class ClientSslAuthConfiguration { /// diff --git a/websocket-sharp/Server/ServerSslAuthConfiguration.cs b/websocket-sharp/Net/ServerSslAuthConfiguration.cs similarity index 96% rename from websocket-sharp/Server/ServerSslAuthConfiguration.cs rename to websocket-sharp/Net/ServerSslAuthConfiguration.cs index 401ad5db..06d7bf62 100644 --- a/websocket-sharp/Server/ServerSslAuthConfiguration.cs +++ b/websocket-sharp/Net/ServerSslAuthConfiguration.cs @@ -36,8 +36,12 @@ using System.Security.Authentication; using System.Security.Cryptography.X509Certificates; -namespace WebSocketSharp +namespace WebSocketSharp.Net { + /// + /// Stores the parameters used in configuring + /// as a server. + /// public class ServerSslAuthConfiguration { /// diff --git a/websocket-sharp/websocket-sharp.csproj b/websocket-sharp/websocket-sharp.csproj index 2f7ba597..04eef04d 100644 --- a/websocket-sharp/websocket-sharp.csproj +++ b/websocket-sharp/websocket-sharp.csproj @@ -1,5 +1,5 @@  - + Debug AnyCPU @@ -68,7 +68,7 @@ - +