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