/// <summary>
        /// Call to fire event that updating the unpublished content has finalized.
        /// </summary>
        /// <param name="content">An enumerable list of <see cref="IContent"/> thats being unpublished</param>
        public override void UnPublishingFinalized(IEnumerable <IContent> content)
        {
            var evtMsgs = _eventMessagesFactory.Get();

            UnPublished.RaiseEvent(
                new PublishEventArgs <IContent>(content, false, false, evtMsgs), this);
        }
Esempio n. 2
0
 /// <summary>
 /// Call to fire event that updating the unpublished content has finalized.
 /// </summary>
 /// <param name="content">An enumerable list of <see cref="IContent"/> thats being unpublished</param>
 public override void UnPublishingFinalized(IEnumerable <IContent> content)
 {
     UnPublished.RaiseEvent(new PublishEventArgs <IContent>(content, false, false), this);
 }