UnitySocketIO icon indicating copy to clipboard operation
UnitySocketIO copied to clipboard

Fix example code for SocketOpened()

Open woojoo666 opened this issue 10 years ago • 1 comments

private void SocketOpened(object sender, MessageEventArgs e)

should be

private void SocketOpened(object sender, EventArgs e)

woojoo666 avatar Apr 13 '14 14:04 woojoo666

But EventArgs doesn't carry the message type class, but it won't compile without EventArgs. . .

A minor bug, I think, but still significant.

CSEliot avatar Mar 09 '15 04:03 CSEliot