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