Class Ecommerce.CustomerCenter.AfterProductClearCacheArgs
- Namespace
- Dynamicweb.Ecommerce.Notifications
- Assembly
- Dynamicweb.Ecommerce.dll
Proovides information about product before rendering.
public class Ecommerce.CustomerCenter.AfterProductClearCacheArgs : NotificationArgs
- Inheritance
-
Ecommerce.CustomerCenter.AfterProductClearCacheArgs
- Inherited Members
Examples
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
}
}
}
Remarks
The passed NotificationArgs is Ecommerce.CustomerCenter.AfterProductClearCacheArgs