Ejemplo n.º 1
0
        public static Message Decode(UDPPacket p)
        {
            var  m = new OnlineNotification();
            uint n = p.ReadUInt8();

            for (uint i = 0; i < n; ++i)
            {
                m.AgentIDs.Add(p.ReadUUID());
            }
            return(m);
        }