Enum ContentSaveAction
The action associated with saving a content item.
Namespace: Umbraco.Cms.Core.Models.ContentEditing
Assembly: Umbraco.Core.dll
Syntax
public enum ContentSaveAction
Fields
Name | Description |
---|---|
Publish | Saves and publishes the content item. |
PublishNew | Creates and publishes a new content item. |
PublishWithDescendants | Saves and publishes the content item including all descendants that have a published version. |
PublishWithDescendantsForce | Saves and publishes the content item including all descendants regardless of whether they have a published version or not. |
PublishWithDescendantsForceNew | Creates and publishes the new content item including all descendants regardless of whether they have a published version or not. |
PublishWithDescendantsNew | Creates and publishes the new content item including all descendants that have a published version. |
Save | Saves the content item, no publish. |
SaveNew | Creates a new content item. |
Schedule | Saves and schedules publishing. |
ScheduleNew | Creates and schedules publishing. |
SendPublish | Saves and sends publish notification. |
SendPublishNew | Creates and sends publish notification. |