public bool TryRemoveContext(string name)
        {
            bool result = false;

            if (Profile.TryRemoveContext(name))
            {
                DefaultProfile.TryRemoveContext(name);
                result = true;
            }

            return(result);
        }