Dynamicweb.Notifications Namespace > eCommerce.Product Class : BeforeRender Field |
using Dynamicweb; namespace Dynamicweb.Examples.CSharp.Notifications.eCommerce { [Dynamicweb.Extensibility.Subscribe(Dynamicweb.Notifications.eCommerce.Product.BeforeRender)] public class EcomProductBeforeRenderObserver : Dynamicweb.Extensibility.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.NotificationArgs args) { if (args == null || !(args is Dynamicweb.Notifications.eCommerce.Product.BeforeRenderArgs)) return; Dynamicweb.Notifications.eCommerce.Product.BeforeRenderArgs item = (Dynamicweb.Notifications.eCommerce.Product.BeforeRenderArgs)args; //TODO: Add code here } } }
Imports Dynamicweb Namespace Dynamicweb.Examples.Vb.Notifications.eCommerce <Global.Dynamicweb.Extensibility.Subscribe(Global.Dynamicweb.Notifications.eCommerce.Product.BeforeRender)> _ Public Class EcomProductBeforeRenderObserver Inherits Global.Dynamicweb.Extensibility.NotificationSubscriber Public Overrides Sub OnNotify(ByVal notification As String, ByVal args As Global.Dynamicweb.Extensibility.NotificationArgs) If args Is Nothing OrElse Not (TypeOf args Is Global.Dynamicweb.Notifications.eCommerce.Product.BeforeRenderArgs) Then Return End If Dim item As Global.Dynamicweb.Notifications.eCommerce.Product.BeforeRenderArgs = DirectCast(args, Global.Dynamicweb.Notifications.eCommerce.Product.BeforeRenderArgs) 'TODO: Add code here End Sub End Class End Namespace
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2