![]() | StandardParagraphParagraphRestoredEventArgs Class |
Namespace: Dynamicweb.Notifications
The StandardParagraphParagraphRestoredEventArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | StandardParagraphParagraphRestoredEventArgs |
Initializes a new instance of an object.
|
Name | Description | |
---|---|---|
![]() | ParagraphID |
Gets the target paragraph id.
|
using Dynamicweb.Extensibility.Notifications; namespace Dynamicweb.Examples.Notifications.Standard { [Subscribe(Dynamicweb.Notifications.Standard.Paragraph.Restored)] public class ParagraphRestoreObserver : NotificationSubscriber { public override void OnNotify(string notification, NotificationArgs args) { if (args == null) return; var item = (Dynamicweb.Notifications.Standard.Paragraph.ParagraphRestoredEventArgs) args; //item.ParagraphID; } } }