Dynamicweb.Notifications Namespace : Standard.Paragraph.ParagraphNotificationArgs Class |
'Declaration
Public Class Standard.Paragraph.ParagraphNotificationArgs Inherits Dynamicweb.Extensibility.NotificationArgs
public class Standard.Paragraph.ParagraphNotificationArgs : Dynamicweb.Extensibility.NotificationArgs
namespace Dynamicweb.Examples.CSharp.Notifications.Standard { [Extensibility.Subscribe(Dynamicweb.Notifications.Standard.Paragraph.Deleted)] public class ParagraphDeletedObserver : Dynamicweb.Extensibility.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.NotificationArgs args) { if (args == null) return; Dynamicweb.Notifications.Standard.Paragraph.ParagraphNotificationArgs item = (Dynamicweb.Notifications.Standard.Paragraph.ParagraphNotificationArgs)args; //Pass paragraph Id to the notification e-mail string emailBody = string.Format("The paragraph (ID:{0}) has been deleted.", item.Target.ID); Dynamicweb.Modules.Common.Email.SendMail("user name", "username@somedomain.dk", "ParagraphDeletedObserver", "admin", "noreply@dynamicweb.dk", emailBody, "UTF-8"); } } }
Namespace Notifications.Standard <Extensibility.Subscribe(Global.Dynamicweb.Notifications.Standard.Paragraph.Deleted)> _ Public Class ParagraphDeletedObserver Inherits Global.Dynamicweb.Extensibility.NotificationSubscriber Public Overrides Sub OnNotify(ByVal notification As String, ByVal args As Global.Dynamicweb.Extensibility.NotificationArgs) If args Is Nothing Then Return End If Dim item As Global.Dynamicweb.Notifications.Standard.Paragraph.ParagraphNotificationArgs = DirectCast(args, Global.Dynamicweb.Notifications.Standard.Paragraph.ParagraphNotificationArgs) 'Pass paragraph Id to the notification e-mail Dim emailBody As String = String.Format("The paragraph (ID:{0}) has been deleted.", item.Target.ID) Global.Dynamicweb.Modules.Common.Email.SendMail("user name", "username@somedomain.dk", "ParagraphDeletedObserver", "admin", "noreply@dynamicweb.dk", emailBody, "UTF-8") End Sub End Class End Namespace
System.Object
Dynamicweb.Extensibility.NotificationArgs
Dynamicweb.Notifications.Standard.Paragraph.ParagraphNotificationArgs
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