Class Ecommerce.Cart.AfterShippingMethodIsChangedArgs
- Namespace
- Dynamicweb.Ecommerce.Notifications
- Assembly
- Dynamicweb.Ecommerce.dll
Provides information about order and shipping method just after shipping method is changed.
public class Ecommerce.Cart.AfterShippingMethodIsChangedArgs : NotificationArgs
- Inheritance
-
Ecommerce.Cart.AfterShippingMethodIsChangedArgs
- Inherited Members
Examples
namespace Dynamicweb.Ecommerce.Examples.Notifications;
[Dynamicweb.Extensibility.Notifications.Subscribe(Ecommerce.Notifications.Ecommerce.Cart.AfterShippingMethodIsChanged)]
public class EcomCartAfterShippingMethodIsChangedObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber
{
public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args)
{
var afterShippingMethodIsChangedArgs = args as Ecommerce.Notifications.Ecommerce.Cart.AfterShippingMethodIsChangedArgs;
if (afterShippingMethodIsChangedArgs is null)
return;
//Add code here
}
}
Remarks
The passed NotificationArgs is Ecommerce.Cart.AfterShippingMethodIsChangedArgs
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.
Shipping
Gets or sets the shipping.
public Shipping Shipping { get; set; }
Property Value
- Shipping
Shipping. Setting this from a notification subscriber will have no effect.