Beispiel #1
0
        public bool PostServerMessage(WaveMessage msg)
        {
            if ((msg == null) || (transport == null))
            {
                return(false);
            }

            transport.SendData(msg.ToEncodedByteArray());

            return(true);
        }