![]() | EcommerceCartAfterDefaultPropertiesValueIsSetArgs Class |
Namespace: Dynamicweb.Ecommerce.Notifications
The EcommerceCartAfterDefaultPropertiesValueIsSetArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | EcommerceCartAfterDefaultPropertiesValueIsSetArgs | Initializes a new instance of the EcommerceCartAfterDefaultPropertiesValueIsSetArgs class |
Name | Description | |
---|---|---|
![]() | Order |
Gets or sets the order/cart.
|
![]() | PropertyName |
Gets or sets the property name.
|
![]() | Value |
Gets or sets the value of the Default Property.
|
using Dynamicweb; namespace Dynamicweb.Ecommerce.Examples.Notifications { [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterDefaultPropertiesValueIsSet)] public class EcomCartAfterDefaultPropertiesValueIsSetObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args) { Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterDefaultPropertiesValueIsSetArgs afterDefaultPropertiesValueIsSetArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterDefaultPropertiesValueIsSetArgs; //Add code here } } }