public void ExampleSendMessage()
    {
        //Construct the message.
        ExampleMessage msg = new ExampleMessage(1, "ExampleData");

        //Send the message.
        client.SendMessageReliable(msg);
    }