Class UmbracoApplicationStartedNotification
Notification that occurs when Umbraco has completely booted up and the request processing pipeline is configured.
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Notifications
Assembly: Umbraco.Core.dll
Syntax
public class UmbracoApplicationStartedNotification : IUmbracoApplicationLifetimeNotification, INotification
Constructors
View SourceUmbracoApplicationStartedNotification(Boolean)
Initializes a new instance of the UmbracoApplicationStartedNotification class.
Declaration
public UmbracoApplicationStartedNotification(bool isRestarting)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | isRestarting | Indicates whether Umbraco is restarting. |
Properties
View SourceIsRestarting
Gets a value indicating whether Umbraco is restarting (e.g. after an install or upgrade).
Declaration
public bool IsRestarting { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|