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