Class Standard.Admin.PipelineStartArgs
- Namespace
- Dynamicweb.Notifications
- Assembly
- Dynamicweb.dll
Provides information about the page from which the pipeline was launched
public class Standard.Admin.PipelineStartArgs : NotificationArgs
- Inheritance
-
Standard.Admin.PipelineStartArgs
- Inherited Members
Examples
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
}
}
}
Remarks
Arguments passed to Dynamicweb.Notifications.Standard.Admin.PipelineStarted notification
Properties
e
[Obsolete("Use EventArgs instead")]
public EventArgs e { get; set; }
Property Value
EventArgs
Gets or sets the event arguments.
public EventArgs EventArgs { get; set; }
Property Value
- EventArgs
- The EventArgs.
EventSender
Gets or sets the sender.
public object EventSender { get; set; }
Property Value
- object
- The sender.
sender
[Obsolete("Use EventSender instead")]
public object sender { get; set; }