using SuperSocket.SocketBase.Protocol; namespace SensorHub.Servers.Commands.CASICCommands { public class RealtimeControlCmd : RealtimeCmd { public override string Name { get { return "Control"; } } public RealtimeControlCmd() { byte[] tag = { 0x50, 0x00, 0x00, 0x01, 0x00, 0x01 }; this.tag = tag; } } }