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