![]() | EcommerceCartAfterCustomerAcceptedValueIsSetArgs Class |
Namespace: Dynamicweb.Ecommerce.Notifications
The EcommerceCartAfterCustomerAcceptedValueIsSetArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | EcommerceCartAfterCustomerAcceptedValueIsSetArgs | Initializes a new instance of the EcommerceCartAfterCustomerAcceptedValueIsSetArgs class |
Name | Description | |
---|---|---|
![]() | CustomerAccepted |
Gets or sets the value of the Customer Accepted.
|
![]() | Order |
Gets or sets the order/cart.
|
using Dynamicweb; namespace Dynamicweb.Ecommerce.Examples.Notifications { [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterCustomerAcceptedValueIsSet)] public class EcomCartAfterCustomerAcceptedValueIsSetObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args) { Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterCustomerAcceptedValueIsSetArgs afterCustomerAcceptedValueIsSetArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterCustomerAcceptedValueIsSetArgs; //Add code here } } }