private static bool ArePublishingFeaturesActivated(PropertyValues props)
        {
            bool activated = false;

            if (bool.TryParse(props.GetPropertyAsString(PublishingFeatureActivated), out activated))
            {
            }

            return(activated);
        }
        private static bool ArePublishingFeaturesActivated(PropertyValues props)
        {
            bool activated = false;

            if (bool.TryParse(props.GetPropertyAsString(PublishingFeatureActivated), out activated))
            {
            }

            return activated;
        }