![]() | StandardPagePageRestoredEventArgs Class |
Namespace: Dynamicweb.Notifications
The StandardPagePageRestoredEventArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | StandardPagePageRestoredEventArgs | Initializes a new instance of the StandardPagePageRestoredEventArgs class |
using Dynamicweb.Extensibility.Notifications; namespace Dynamicweb.Examples.Notifications.Standard.Page { [Subscribe(Dynamicweb.Notifications.Standard.Page.Restored)] internal class PageRestoreObserver : NotificationSubscriber { public override void OnNotify(string notification, NotificationArgs args) { if (args == null) return; var pra = (Dynamicweb.Notifications.Standard.Page.PageRestoredEventArgs) args; //pra.PageID } } }