![]() | EcommerceGroupGroupRelationModifiedEventArgs Class |
Namespace: Dynamicweb.Ecommerce.Notifications
The EcommerceGroupGroupRelationModifiedEventArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | EcommerceGroupGroupRelationModifiedEventArgs(String, String) |
Initializes new instance of an object.
|
![]() | EcommerceGroupGroupRelationModifiedEventArgs(String, String, String, String) |
Initializes new instance of an object.
|
Name | Description | |
---|---|---|
![]() | ChildId |
Gets an Id of the child group.
|
![]() | OldChildId |
Gets an original Id of the child group.
|
![]() | OldParentId |
Gets an original Id of the parent group.
|
![]() | ParentId |
Gets an Id of the parent group.
|
using Dynamicweb; namespace Dynamicweb.Ecommerce.Examples.Notifications { [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Ecommerce.Notifications.Ecommerce.Group.RelationUpdated)] public class EcomGroupRelationUpdatedObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args) { if (args == null || !(args is Dynamicweb.Ecommerce.Notifications.Ecommerce.Group.GroupRelationModifiedEventArgs)) return; Dynamicweb.Ecommerce.Notifications.Ecommerce.Group.GroupRelationModifiedEventArgs item = (Dynamicweb.Ecommerce.Notifications.Ecommerce.Group.GroupRelationModifiedEventArgs)args; //Add code here } } }