![]() | StandardAdminPipelineStartArgs Class |
Namespace: Dynamicweb.Notifications
The StandardAdminPipelineStartArgs type exposes the following members.
Name | Description | |
---|---|---|
![]() | StandardAdminPipelineStartArgs | Initializes a new instance of the StandardAdminPipelineStartArgs class |
Name | Description | |
---|---|---|
![]() | e | Obsolete. |
![]() | EventArgs |
Gets or sets the event arguments.
|
![]() | EventSender |
Gets or sets the sender.
|
![]() | sender | Obsolete. |
namespace Dynamicweb.Examples.Notifications.Standard { [Dynamicweb.Extensibility.Notifications.Subscribe(Dynamicweb.Notifications.Standard.Admin.PipelineStarted)] public class PipelineStartedObserver : Dynamicweb.Extensibility.Notifications.NotificationSubscriber { public override void OnNotify(string notification, Dynamicweb.Extensibility.Notifications.NotificationArgs args) { if (args == null) return; if (!(args is Dynamicweb.Notifications.Standard.Admin.PipelineStartArgs)) return; Dynamicweb.Notifications.Standard.Admin.PipelineStartArgs item = (Dynamicweb.Notifications.Standard.Admin.PipelineStartArgs)args; //Add code here } } }