protected override void Cloned(CloneContentContext context, TPart instance)
 {
     if (OnCloned != null)
     {
         OnCloned(context, instance);
     }
 }
 void IContentHandler.Cloning(CloneContentContext context)
 {
     foreach (var filter in Filters.OfType <IContentStorageFilter>())
     {
         filter.Cloning(context);
     }
     Cloning(context);
 }
Beispiel #3
0
 protected override void Cloning(CloneContentContext context) {
 }
 protected virtual void Cloned(CloneContentContext context)
 {
 }