Looking at the Sitecore.Data.Events.ItemAddedDelegate code, you can read that this delegate is deprecated and you should use ItemCreatedDelegate instead. From my tests:
- Creating a new element - both the element: added, and the element: are created
- Cloning element - both the element: added and the element: are created
Duplicate element - element: added NOT executed, only element: executed
namespace Sitecore.Data.Events { [Obsolete("Use the ItemCreatedDelegate event instead.")] public delegate void ItemAddedDelegate(object sender, ItemAddedEventArgs args); }
In general, always use the: created element
source share