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