Skip to content

Instantly share code, notes, and snippets.

@XSockets
Last active December 26, 2015 23:29
Show Gist options
  • Save XSockets/7230526 to your computer and use it in GitHub Desktop.
Save XSockets/7230526 to your computer and use it in GitHub Desktop.
test
public class MyBinaryController : XSocketController
{
public override void OnMessage(Core.Common.Socket.Event.Interface.IBinaryArgs binaryArgs)
{
var bm = new BinaryMessage(binaryArgs);
this.Send(bm.BinaryArgs);
this.Send(bm.TextArgs);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment