Class Ecommerce.Cart.AfterRecurringOrderPlacedArgs
- Namespace
- Dynamicweb.Ecommerce.Notifications
- Assembly
- Dynamicweb.Ecommerce.dll
Provides information about order just after new recurring order is placed.
- Inheritance
-
Ecommerce.
Cart. After Recurring Order Placed Args
- Inherited Members
Examples
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
}
}
}
Remarks
The passed NotificationArgs is Ecommerce.
Properties
Order
Gets or sets the order.
Property Value
- Order
Order. Setting this from a notification subscriber will have no effect.
RecurringOrder
Gets or sets the Recurring
Property Value
- Recurring
Order Order. Setting this from a notification subscriber will have no effect.