![]() | EcommerceCustomerCenterAfterProductClearCacheArgs Class |
Namespace: Dynamicweb.Ecommerce.Notifications
The EcommerceCustomerCenterAfterProductClearCacheArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | EcommerceCustomerCenterAfterProductClearCacheArgs | Initializes a new instance of the EcommerceCustomerCenterAfterProductClearCacheArgs class |
using Dynamicweb; namespace Dynamicweb.Ecommerce.Examples.Notifications { [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Product.BeforeRender)] public class EcomProductBeforeRenderObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args) { if (args == null || !(args is Dynamicweb.Ecommerce.Notifications.Ecommerce.Product.BeforeRenderArgs)) return; Dynamicweb.Ecommerce.Notifications.Ecommerce.Product.BeforeRenderArgs item = (Dynamicweb.Ecommerce.Notifications.Ecommerce.Product.BeforeRenderArgs)args; //Add code here } } }