Table of Contents

Class Ecommerce.Cart.BeforeCustomerCountryIsChangedArgs

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

Provides information about order and country just before customer country is changed by the user.

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

Examples

using Dynamicweb;

  namespace Dynamicweb.Ecommerce.Examples.Notifications
  {
      [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforeCustomerCountryIsChanged)]
      public class EcomCartBeforeCustomerCountryIsChangedObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber
      {
          public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args)
          {
              Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforeCustomerCountryIsChangedArgs beforeCustomerCountryIsChangedArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforeCustomerCountryIsChangedArgs;

              //Add code here
          }
      }
  }

Remarks

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