Table of Contents

Class Ecommerce.Cart.BeforePaymentMethodIsChangedArgs

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

Provides information about order and payment method just before PaymentMethod is changed.

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

Examples

using Dynamicweb;

  namespace Dynamicweb.Ecommerce.Examples.Notifications
  {
      [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforePaymentMethodIsChanged)]
      public class EcomCartBeforePaymentMethodIsChangedObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber
      {
          public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args)
          {
              Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforePaymentMethodIsChangedArgs beforePaymentMethodIsChangedArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforePaymentMethodIsChangedArgs;

              //Add code here
          }
      }
  }

Remarks

The passed NotificationArgs is Ecommerce.Cart.BeforePaymentMethodIsChangedArgs

Properties

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.

Payment

Gets or sets the payment.

public Payment Payment { get; set; }

Property Value

Payment

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

See Also

To top