Class Standard.Page.PageviewNotificationArgs
- Namespace
- Dynamicweb.Notifications
- Assembly
- Dynamicweb.dll
Generic notification argument for notifications in pageviev object
- Inheritance
-
Standard.
Page. Pageview Notification Args
- Inherited Members
Examples
using Dynamicweb.Extensibility.Notifications;
namespace Dynamicweb.Examples.Notifications.Standard
{
[Subscribe(Dynamicweb.Notifications.Standard.Page.OnGlobalTags)]
public class PageviewObserver : NotificationSubscriber
{
public override void OnNotify(string notification, NotificationArgs args)
{
if (args == null)
return;
var pna = (Dynamicweb.Notifications.Standard.Page.PageviewNotificationArgs) args;
//To do - insert your code here
}
}
}
Remarks
Arguments passed to Dynamicweb.