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