public string GetSourceIP()
        {
            String baseIP = ByteOperations.DecodeByteArrayToStringNumber(SourceIp);

            return(
                baseIP.Substring(0, 3) + "." +
                baseIP.Substring(3, 3) + "." +
                baseIP.Substring(6, 3) + "." +
                baseIP.Substring(9)
                );
        }
 public String GetMessageTimestamp()
 {
     return(ByteOperations.DecodeByteArrayToStringNumber(DataTimestamp));
 }