Interface ICancelableNotification
Represents a notification that can be canceled by a notification handler.
Namespace: Umbraco.Cms.Core.Notifications
Assembly: Umbraco.Core.dll
Syntax
public interface ICancelableNotification : INotification
Remarks
When a notification handler sets Cancel to true,
the operation that triggered the notification will be aborted.
Properties
View SourceCancel
Gets or sets a value indicating whether the operation should be canceled.
Declaration
bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|