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