![]() | CommentingCommentArgs Class |
Namespace: Dynamicweb.Notifications
The CommentingCommentArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | CommentingCommentArgs | Initializes a new instance of the CommentingCommentArgs class |
using Dynamicweb.Extensibility.Notifications; using Dynamicweb.Notifications; namespace Dynamicweb.Examples.Notifications { [Subscribe(CommentNotification.OnBeforeSave)] public class OnBeforeSaveObserver : NotificationSubscriber { public override void OnNotify(string notification, NotificationArgs args) { var commentArgs = args as CommentNotification.CommentArgs; //Add code here } } }