Dynamicweb 8 Documentation
BeforeCustomFieldValueIsChanged Field
Example 

This notification is broadcast before a Custom Order Field is set. This notification is only broadcast if the Custom Order Field value has been changed.
Syntax
'Declaration
 
Public Const BeforeCustomFieldValueIsChanged As String
public const string BeforeCustomFieldValueIsChanged
Example
Notification observer exampleNotification observer example
using Dynamicweb;
                            
  namespace Dynamicweb.Examples.CSharp.Notifications.eCommerce
  {
      [Dynamicweb.Extensibility.Subscribe(Dynamicweb.Notifications.eCommerce.Cart.BeforeCustomFieldValueIsChanged)]
      public class EcomCartBeforeCustomFieldValueIsChangedObserver : Dynamicweb.Extensibility.NotificationSubscriber
      {
          public override void OnNotify(string notification, Dynamicweb.Extensibility.NotificationArgs args)
          {
              Dynamicweb.Notifications.eCommerce.Cart.BeforeCustomFieldValueIsChangedArgs beforeCustomFieldValueIsChangedArgs = args as Dynamicweb.Notifications.eCommerce.Cart.BeforeCustomFieldValueIsChangedArgs;

              //TODO: Add code here
          }
      }
  }
                            
                            
Imports Dynamicweb

Namespace Dynamicweb.Examples.Vb.Notifications.eCommerce
    <Global.Dynamicweb.Extensibility.Subscribe(Global.Dynamicweb.Notifications.eCommerce.Cart.BeforeCustomFieldValueIsChanged)> _
    Public Class EcomCartBeforeCustomFieldValueIsChangedObserver
        Inherits Global.Dynamicweb.Extensibility.NotificationSubscriber

        Public Overrides Sub OnNotify(ByVal notification As String, ByVal args As Global.Dynamicweb.Extensibility.NotificationArgs)
            Dim beforeCustomFieldValueIsChangedArgs As Global.Dynamicweb.Notifications.eCommerce.Cart.BeforeCustomFieldValueIsChangedArgs = TryCast(args, Global.Dynamicweb.Notifications.eCommerce.Cart.BeforeCustomFieldValueIsChangedArgs)
            If beforeCustomFieldValueIsChangedArgs IsNot Nothing Then
                'TODO: Add code here
            End If
        End Sub

    End Class
End Namespace
Remarks
The passed NotificationArgs is eCommerce.Cart.BeforeCustomFieldValueIsChangedArgs
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

eCommerce.Cart Class
eCommerce.Cart Members

Send Feedback