private void ReceiveChangeSettingResponse(byte[] body)
        {
            Log.Trace("Receiving Reveal Response", "ReceiveRevealResponse");

            ChangeSettingResponse response = ChangeSettingResponse.FromBytes(body);

            String result = response.Success ?
                            "Successfully changed setting" :
                            "Failed to change setting (not yet implemented)";

            Notification notice = new ChatNotification()
            {
                Text   = result,
                Sender = "GP"
            };

            notice.Raise();
        }