public QQSendEventArgs(QQClient client, ByteBuffer byteBuffer) { this.QQClient = client; this.byteBuffer = byteBuffer; }
public QQEventArgs(QQClient client, R receivePacket) { this.QQClient = client; this.ReceivePacket = receivePacket; }
public QQSendEventArgs(QQClient client, byte[] byteBuffer) { this.QQClient = client; this.byteBuffer = new MemoryStream(byteBuffer); }
public QQEventArgs(QQClient client, R receivePacket) { QQClient = client; ReceivePacket = receivePacket; }