![]() | EcommerceCartBeforeShippingMethodIsSetArgs Class |
Namespace: Dynamicweb.Ecommerce.Notifications
The EcommerceCartBeforeShippingMethodIsSetArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | EcommerceCartBeforeShippingMethodIsSetArgs | Initializes a new instance of the EcommerceCartBeforeShippingMethodIsSetArgs class |
using Dynamicweb; namespace Dynamicweb.Ecommerce.Examples.Notifications { [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforeShippingMethodIsSet)] public class EcomCartBeforeShippingMethodIsSetObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args) { Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforeShippingMethodIsSetArgs beforeShippingMethodIsSetArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.BeforeShippingMethodIsSetArgs; //Add code here } } }