Example #1
0
        private void SendResponse(MsgMeas.GetObservationResponse responseObj)
        {
            // Serialising the object
            byte[] responseXml = responseObj.ToXmlBytes();

            // Sending the response to the client...
            // In real life, you will have to consider where to send.
            // This depends on the protocol and network structure.
            throw new NotImplementedException();
        }