Table of Contents

Class Ecommerce.Cart.BeforeRenderingEmptyCartArgs

Namespace
Dynamicweb.Ecommerce.Notifications
Assembly
Dynamicweb.Ecommerce.dll

Provides information about cart that is going to be empty.

public class Ecommerce.Cart.BeforeRenderingEmptyCartArgs : NotificationArgs
Inheritance
Ecommerce.Cart.BeforeRenderingEmptyCartArgs
Inherited Members

Examples

using Dynamicweb;

  namespace Dynamicweb.Ecommerce.Examples.Notifications
  {
      [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforeRenderingEmptyCart)]
      public class EcomCartBeforeRenderingEmptyCartObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber
      {
          public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args)
          {
              Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforeRenderingEmptyCartArgs beforeRenderingEmptyCartArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforeRenderingEmptyCartArgs;

              //Add code here
          }
      }
  }

Remarks

The passed NotificationArgs is Ecommerce.Cart.BeforeRenderingEmptyCartArgs

Properties

EmptyAction

Gets or sets the CartEmptyAction.

public CartEmptyAction EmptyAction { get; set; }

Property Value

CartEmptyAction

CartEmptyAction. Setting this from a notification subscriber will have no effect.

See Also

To top