Table of Contents

Class Ecommerce.Cart.AfterDeliveryCountryIsChangedArgs

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

Provides information about order and delivery country just after it is changed by user.

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

Examples

using Dynamicweb;

  namespace Dynamicweb.Ecommerce.Examples.Notifications
  {
      [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterDeliveryCountryIsChanged)]
      public class EcomCartAfterDeliveryCountryIsChangedObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber
      {
          public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args)
          {
              Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterDeliveryCountryIsChangedArgs afterDeliveryCountryIsChangedArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterDeliveryCountryIsChangedArgs;

              //Add code here
          }
      }
  }

Remarks

The passed NotificationArgs is Ecommerce.Cart.AfterDeliveryCountryIsChangedArgs

Properties

Country

Gets or sets the country.

public Country Country { get; set; }

Property Value

Country

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

Order

Gets or sets the order/cart.

public Order Order { get; set; }

Property Value

Order

Order/cart. Setting this from a notification subscriber will have no effect.

See Also

To top