![]() | EcommerceCartAfterRecurringOrderPlacedArgs Class |
Namespace: Dynamicweb.Ecommerce.Notifications
The EcommerceCartAfterRecurringOrderPlacedArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | EcommerceCartAfterRecurringOrderPlacedArgs | Initializes a new instance of the EcommerceCartAfterRecurringOrderPlacedArgs class |
Name | Description | |
---|---|---|
![]() | Order |
Gets or sets the order.
|
![]() | RecurringOrder |
Gets or sets the RecurringOrder.
|
using Dynamicweb; namespace Dynamicweb.Ecommerce.Examples.Notifications { [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterRecurringOrderPlaced)] public class EcomCartAfterRecurringOrderPlacedObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args) { Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterRecurringOrderPlacedArgs afterRecurringOrderPlacedArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterRecurringOrderPlacedArgs; //Add code here } } }