diff --git a/index.html b/index.html index 5fb6a991..7e762640 100644 --- a/index.html +++ b/index.html @@ -29,6 +29,16 @@

+Branches

+ +

Build

websocket-sharp is built as a single assembly, websocket-sharp.dll.

@@ -52,7 +62,7 @@

You can add websocket-sharp to your project using the NuGet Package Manager, like the following command in the Package Manager Console.

+

You can add websocket-sharp to your project using the NuGet Package Manager, the following command in the Package Manager Console.

PM> Install-Package WebSocketSharp -Pre
 
@@ -64,7 +74,7 @@

That's priced at US$15. I think that your $15 makes this project more better and accelerated, Thank you!

+

That's priced at US$15. I think your $15 makes this project more better and accelerated, Thank you!

Supported .NET framework

@@ -337,6 +347,12 @@

In addition, if you override the OnOpen, OnError and OnClose methods, each of them is bound to each server side event of WebSocket.OnOpen, WebSocket.OnError and WebSocket.OnClose.

+

The WebSocketService.Send method sends a data to the client of the current session to the WebSocket service.

+ +

The WebSocketService.Sessions (its type is WebSocketSharp.Server.WebSocketSessionManager) property provides some functions for the sessions to the WebSocket service.

+ +

The WebSocketService.Sessions.Broadcast method sends a data to all client of the WebSocket service.

+

Step 3

@@ -398,19 +414,19 @@

Per-message Compression

-

websocket-sharp supports Per-message Compression extension. (But, does not support with extension parameters.)

+

websocket-sharp supports Per-message Compression extension. (But it doesn't support with extension parameters.)

-

If you want to enable this extension as a WebSocket client, you should do like the following.

+

If you enable this extension as a WebSocket client, you should do the following.

ws.Compression = CompressionMethod.DEFLATE;
 
-

And then your client sends the following header in the opening handshake to a WebSocket server.

+

And then your WebSocket client sends the following header in the opening handshake to a WebSocket server.

Sec-WebSocket-Extensions: permessage-deflate
 
-

If the server supports this extension, responds the same header. And when your client receives the header, enables this extension.

+

If the server supports this extension, it responds the same header. And when your client receives the header, it enables this extension.

Secure Connection

@@ -493,14 +509,7 @@

Supported WebSocket Specifications

-

websocket-sharp supports RFC 6455.

- -

websocket-sharp is based on the following WebSocket references.

+

websocket-sharp supports RFC 6455 and is based on the following WebSocket references.