Last active
March 23, 2016 18:35
-
-
Save lukasz-pyrzyk/c7dba8e3de0cd83e2c2b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using XGain.Sockets; | |
namespace XGain | |
{ | |
public class MessageArgs : EventArgs | |
{ | |
public MessageArgs() | |
{ | |
} | |
public MessageArgs(ISocket client, object userToken, byte[] requestBytes) | |
{ | |
Client = client; | |
UserToken = userToken; | |
RequestBytes = requestBytes; | |
} | |
public ISocket Client { get; } | |
public object UserToken { get; } | |
public byte[] RequestBytes { get; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment