// LAMESPEC: this is missing from MSDN but is present in 2.0sp1 version of the
        // class.
        protected override bool OnDeserializeUnrecognizedElement(string elementName, XmlReader reader)
        {
            if (elementName == "group")
            {
                ProfileGroupSettings newSettings = new ProfileGroupSettings();
                newSettings.DoDeserialize(reader);
                GroupSettings.AddNewSettings(newSettings);

                return(true);
            }

            return(base.OnDeserializeUnrecognizedElement(elementName, reader));
        }