Fix a few

This commit is contained in:
sta 2014-01-20 19:33:21 +09:00
parent 26f7e2ad33
commit a90716ab15

View File

@ -97,7 +97,7 @@ using (var ws = new WebSocket ("ws://example.com")) {
}
```
The `WebSocket` class inherits the `IDisposable` interface, so you can use the `using` statement.
The `WebSocket` class inherits the `System.IDisposable` interface, so you can use the `using` statement.
#### Step 3 ####
@ -113,7 +113,7 @@ ws.OnOpen += (sender, e) => {
};
```
`e` has passed as `EventArgs.Empty`, so you don't use `e`.
`e` has passed as the `System.EventArgs.Empty`, so you don't use `e`.
##### WebSocket.OnMessage Event #####