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
This commit is contained in:
parent
4e7bca4f38
commit
88e224384f
@ -36,8 +36,12 @@
|
|||||||
using System.Security.Authentication;
|
using System.Security.Authentication;
|
||||||
using System.Security.Cryptography.X509Certificates;
|
using System.Security.Cryptography.X509Certificates;
|
||||||
|
|
||||||
namespace WebSocketSharp
|
namespace WebSocketSharp.Net
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Stores the parameters used in configuring <see cref="System.Net.Security.SslStream"/>
|
||||||
|
/// as a client.
|
||||||
|
/// </summary>
|
||||||
public class ClientSslAuthConfiguration
|
public class ClientSslAuthConfiguration
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -36,8 +36,12 @@
|
|||||||
using System.Security.Authentication;
|
using System.Security.Authentication;
|
||||||
using System.Security.Cryptography.X509Certificates;
|
using System.Security.Cryptography.X509Certificates;
|
||||||
|
|
||||||
namespace WebSocketSharp
|
namespace WebSocketSharp.Net
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Stores the parameters used in configuring <see cref="System.Net.Security.SslStream"/>
|
||||||
|
/// as a server.
|
||||||
|
/// </summary>
|
||||||
public class ServerSslAuthConfiguration
|
public class ServerSslAuthConfiguration
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
@ -68,7 +68,7 @@
|
|||||||
<Compile Include="ByteOrder.cs" />
|
<Compile Include="ByteOrder.cs" />
|
||||||
<Compile Include="ErrorEventArgs.cs" />
|
<Compile Include="ErrorEventArgs.cs" />
|
||||||
<Compile Include="Net\ClientSslAuthConfiguration.cs" />
|
<Compile Include="Net\ClientSslAuthConfiguration.cs" />
|
||||||
<Compile Include="Server\ServerSslAuthConfiguration.cs" />
|
<Compile Include="Net\ServerSslAuthConfiguration.cs" />
|
||||||
<Compile Include="WebSocket.cs" />
|
<Compile Include="WebSocket.cs" />
|
||||||
<Compile Include="Server\WebSocketServer.cs" />
|
<Compile Include="Server\WebSocketServer.cs" />
|
||||||
<Compile Include="Net\AuthenticationSchemes.cs" />
|
<Compile Include="Net\AuthenticationSchemes.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user