Dynamicweb 8 Documentation
Start Field
Example 

Application start notification. Occurs when the appication was launched
Syntax
'Declaration
 
Public Const Start As String
public const string Start
Example
Overriding the application start notification in DynamicwebOverriding the application start notification in Dynamicweb
using Dynamicweb;

namespace Dynamicweb.Examples.CSharp.Notifications.Standard
{
    [Dynamicweb.Extensibility.Subscribe(Dynamicweb.Notifications.Standard.Application.Start)]
    public class ApplicationStartObserver : Dynamicweb.Extensibility.NotificationSubscriber
    {
        public override void OnNotify(string notification, Dynamicweb.Extensibility.NotificationArgs args)
        {
            if (args == null)
                return;

            if (!(args is Dynamicweb.Notifications.Standard.Application.StartArgs))
                return;

            Dynamicweb.Notifications.Standard.Application.StartArgs item = (Dynamicweb.Notifications.Standard.Application.StartArgs)args;

            //TODO: Add code here

        }
    }
}
Namespace Notifications.Standard
    <Extensibility.Subscribe(Global.Dynamicweb.Notifications.Standard.Application.Start)> _
    Public Class ApplicationStartObserver
        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

            If Not (TypeOf args Is Global.Dynamicweb.Notifications.Standard.Application.StartArgs) Then
                Return
            End If

            Dim item As Global.Dynamicweb.Notifications.Standard.Application.StartArgs = DirectCast(args, Global.Dynamicweb.Notifications.Standard.Application.StartArgs)

            'TODO: Add code here

        End Sub
    End Class
End Namespace
Remarks
Event occurs in Application_Start in Global.asax. The passed NotificationArgs is Dynamicweb.Notifications.Standard.Application.StartArgs
Requirements

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

See Also

Reference

Standard.Application Class
Standard.Application Members

Send Feedback