Class Ecommerce.Cart.AfterCustomFieldValueIsChangedArgs
- Namespace
- Dynamicweb.Ecommerce.Notifications
- Assembly
- Dynamicweb.Ecommerce.dll
Provides information about order and it's custom field just after it is changed.
- Inheritance
-
Ecommerce.
Cart. After Custom Field Value IsChanged Args
- Inherited Members
Examples
using Dynamicweb;
namespace Dynamicweb.Ecommerce.Examples.Notifications
{
[Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterCustomFieldValueIsChanged)]
public class EcomCartAfterCustomFieldValueIsChangedObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber
{
public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args)
{
Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterCustomFieldValueIsChangedArgs afterCustomFieldValueIsChangedArgs = args as Dynamicweb.Ecommerce.Notifications.Ecommerce.Cart.AfterCustomFieldValueIsChangedArgs;
//Add code here
}
}
}
Remarks
The passed NotificationArgs is Ecommerce.
Properties
CustomFieldName
Gets or sets the Custom Field name.
Property Value
- string
String. Setting this from a notification subscriber will have no effect.
Order
Gets or sets the order/cart.
Property Value
- Order
Order/cart. Setting this from a notification subscriber will have no effect.
Value
Gets or sets the value of the Custom Field.
Property Value
- object
Object. Setting this from a notification subscriber will have no effect.