Dynamicweb 8 Documentation
eCommerce.Order.State Class
Members  Example 

Provides notification names for order state.
Syntax
'Declaration
 
Public Class eCommerce.Order.State 
public class eCommerce.Order.State 
Remarks
The passed NotificationArgs is eCommerce.Order.State.ChangedArgs
Example
Overriding the device detection of DynamicwebOverriding the device detection of Dynamicweb
using Dynamicweb;

namespace Dynamicweb.Examples.CSharp.Notifications.eCommerce
{
    [Dynamicweb.Extensibility.Subscribe(Dynamicweb.Notifications.eCommerce.Order.State.Changed)]
    public class EcomOrderStateChangedObserver : Dynamicweb.Extensibility.NotificationSubscriber
    {
      public override void OnNotify(string notification, Dynamicweb.Extensibility.NotificationArgs args)
      {
        Dynamicweb.Notifications.eCommerce.Order.State.ChangedArgs changedArgs = args as Dynamicweb.Notifications.eCommerce.Order.State.ChangedArgs;
        //TODO: Add code here
      }
    }
}

Imports Dynamicweb

Namespace Dynamicweb.Examples.Vb.Notifications.eCommerce
    <Global.Dynamicweb.Extensibility.Subscribe(Global.Dynamicweb.Notifications.eCommerce.Order.State.Changed)> _
    Public Class EcomOrderStateChangedObserver
        Inherits Global.Dynamicweb.Extensibility.NotificationSubscriber

        Public Overrides Sub OnNotify(ByVal notification As String, ByVal args As Object())
            If args Is Nothing OrElse args.Length <> 1 Then
                Return
            End If

            Dim order As Global.Dynamicweb.eCommerce.Orders.Order = DirectCast(args(0), Global.Dynamicweb.eCommerce.Orders.Order)
            'TODO: Add code here
        End Sub

    End Class
End Namespace
Inheritance Hierarchy

System.Object
   Dynamicweb.Notifications.eCommerce.Order.State

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.Order.State Members
Dynamicweb.Notifications Namespace

Send Feedback