Exemple #1
0
 /// <summary>
 /// Fires the content of the after refresh.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="umbraco.cms.businesslogic.RefreshContentEventArgs"/> instance containing the event data.</param>
 protected virtual void FireAfterRefreshContent(cms.businesslogic.RefreshContentEventArgs e)
 {
     if (AfterRefreshContent != null)
     {
         AfterRefreshContent(null, e);
     }
 }
Exemple #2
0
 /// <summary>
 /// Fires the content of the before refresh.
 /// </summary>
 /// <param name="sender">The sender.</param>
 /// <param name="e">The <see cref="umbraco.cms.businesslogic.RefreshContentEventArgs"/> instance containing the event data.</param>
 protected virtual void FireBeforeRefreshContent(cms.businesslogic.RefreshContentEventArgs e)
 {
     if (BeforeRefreshContent != null)
     {
         BeforeRefreshContent(null, e);
     }
 }