Modified a few for README.md

This commit is contained in:
sta 2014-11-16 14:37:54 +09:00
parent 298ed9210e
commit 1bcb80ca8c

View File

@ -502,7 +502,7 @@ And if you would like to send the **Origin header** with the WebSocket connectio
ws.Origin = "http://example.com";
```
And if you would like to send the **Cookies** with the WebSocket connection request to the server, you should set any cookie by using the `WebSocket.SetCookie (WebSocketSharp.Net.Cookie)` method before connecting, such as the following.
And also if you would like to send the **Cookies** with the WebSocket connection request to the server, you should set any cookie by using the `WebSocket.SetCookie (WebSocketSharp.Net.Cookie)` method before connecting, such as the following.
```csharp
ws.SetCookie (new Cookie ("name", "nobita"));
@ -551,7 +551,7 @@ wssv.AddWebSocketService<Chat> (
});
```
Also, if you would like to get each value of the Origin header and cookies, you should access each of the `WebSocketBehavior.Context.Origin` and `WebSocketBehavior.Context.CookieCollection` properties.
And also if you would like to get each value of the Origin header and cookies, you should access each of the `WebSocketBehavior.Context.Origin` and `WebSocketBehavior.Context.CookieCollection` properties.
### Connecting through the HTTP Proxy server ###