예제 #1
0
파일: Network.cs 프로젝트: rahulyhg/cms-cli
        public bool PostServerMessage(WaveMessage msg)
        {
            if ((msg == null) || (transport == null))
            {
                return(false);
            }

            transport.SendData(msg.ToEncodedByteArray());

            return(true);
        }