Modified CompressionMethod enum values to PascalCase values

This commit is contained in:
sta
2014-03-04 17:02:41 +09:00
parent 639b056f1a
commit e594696a38
6 changed files with 37 additions and 35 deletions

View File

@@ -390,7 +390,7 @@ websocket-sharp supports the **[Per-message Compression][compression]** extensio
If you would like to enable this extension as a WebSocket client, you should set like the following.
```cs
ws.Compression = CompressionMethod.DEFLATE;
ws.Compression = CompressionMethod.Deflate;
```
And then your client sends the following header with the connection request to the server.