Interface IContentSave<TPersisted>
An interface exposes the shared parts of content, media, members that we use during model binding in order to share logic
Namespace: Umbraco.Cms.Core.Models.ContentEditing
Assembly: Umbraco.Core.dll
Syntax
public interface IContentSave<TPersisted> : IHaveUploadedFiles where TPersisted : IContentBase
Type Parameters
Name | Description |
---|---|
TPersisted |
Properties
View SourceAction
The action to perform when saving this content item
Declaration
ContentSaveAction Action { get; set; }
Property Value
Type | Description |
---|---|
ContentSaveAction |
PersistedContent
The real persisted content object - used during inbound model binding
Declaration
TPersisted PersistedContent { get; set; }
Property Value
Type | Description |
---|---|
TPersisted |
Remarks
This is not used for outgoing model information.