Class DictionaryItemMovedNotification
Notification published after dictionary items have been moved.
Inheritance
object
Namespace: Umbraco.Cms.Core.Notifications
Assembly: Umbraco.Core.dll
Syntax
public class DictionaryItemMovedNotification : MovedNotification<IDictionaryItem>, IStatefulNotification, INotification
Remarks
This notification is published after dictionary items have been successfully moved to a new parent in the dictionary tree.
Constructors
View SourceDictionaryItemMovedNotification(IEnumerable<MoveEventInfo<IDictionaryItem>>, EventMessages)
Initializes a new instance of the DictionaryItemMovedNotification class with multiple move operations.
Declaration
public DictionaryItemMovedNotification(IEnumerable<MoveEventInfo<IDictionaryItem>> target, EventMessages messages)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<MoveEventInfo<IDictionaryItem>> | target | Information about the dictionary items that were moved. |
| EventMessages | messages | The event messages collection. |
DictionaryItemMovedNotification(MoveEventInfo<IDictionaryItem>, EventMessages)
Initializes a new instance of the DictionaryItemMovedNotification class with a single move operation.
Declaration
public DictionaryItemMovedNotification(MoveEventInfo<IDictionaryItem> target, EventMessages messages)
Parameters
| Type | Name | Description |
|---|---|---|
| MoveEventInfo<IDictionaryItem> | target | Information about the dictionary item that was moved. |
| EventMessages | messages | The event messages collection. |