Example #1
0
 protected override void Removed(RemoveContentContext context, TPart instance)
 {
     if (OnRemoved != null)
     {
         OnRemoved(context, instance);
     }
 }
Example #2
0
 void IContentHandler.Removed(RemoveContentContext context)
 {
     foreach (var filter in Filters.OfType <IContentStorageFilter>())
     {
         filter.Removed(context);
     }
     Removed(context);
 }
Example #3
0
 protected virtual void Removed(RemoveContentContext context)
 {
 }