Dynamicweb 8 Documentation
RelationUpdated Field
Example 

Occurs when group relation has been updated.
Syntax
'Declaration
 
Public Const RelationUpdated As String
public const string RelationUpdated
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.Group.RelationUpdated)]
    public class EcomGroupRelationUpdatedObserver : Dynamicweb.Extensibility.NotificationSubscriber
    {
        public override void OnNotify(string notification, Dynamicweb.Extensibility.NotificationArgs args)
        {
            if (args == null || !(args is Dynamicweb.Notifications.eCommerce.Group.GroupRelationModifiedEventArgs))
                return;

            Dynamicweb.Notifications.eCommerce.Group.GroupRelationModifiedEventArgs item = (Dynamicweb.Notifications.eCommerce.Group.GroupRelationModifiedEventArgs)args;

            //TODO: Add code here
        }
    }
}

Imports Dynamicweb

Namespace Dynamicweb.Examples.Vb.Notifications.eCommerce
    <Global.Dynamicweb.Extensibility.Subscribe(Global.Dynamicweb.Notifications.eCommerce.Group.RelationUpdated)> _
    Public Class EcomGroupRelationUpdatedObserver
        Inherits Global.Dynamicweb.Extensibility.NotificationSubscriber

        Public Overrides Sub OnNotify(ByVal notification As String, ByVal args As Global.Dynamicweb.Extensibility.NotificationArgs)
            If args Is Nothing OrElse Not (TypeOf args Is Global.Dynamicweb.Notifications.eCommerce.Group.GroupRelationModifiedEventArgs) Then
                Return
            End If

            Dim item As Global.Dynamicweb.Notifications.eCommerce.Group.GroupRelationModifiedEventArgs = DirectCast(args, Global.Dynamicweb.Notifications.eCommerce.Group.GroupRelationModifiedEventArgs)
            'TODO: Add code here
        End Sub

    End Class
End Namespace
Remarks
The passed NotificationArgs is eCommerce.Group.GroupRelationModifiedEventArgs
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.Group Class
eCommerce.Group Members

Send Feedback