View Source
Class ContentItemSave
A model representing a content item to be saved
Inheritance
System.Object
Assembly: Umbraco.Core.dll
Syntax
public class ContentItemSave : object, IContentSave<IContent>, IHaveUploadedFiles
Constructors
View Source
ContentItemSave()
Declaration
Properties
View Source
Action
Declaration
public ContentSaveAction Action { get; set; }
Property Value
View Source
ContentTypeAlias
Declaration
public string ContentTypeAlias { get; set; }
Property Value
Type |
Description |
System.String |
|
View Source
Id
Declaration
public int Id { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
View Source
ParentId
Declaration
public int ParentId { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
View Source
PersistedContent
Declaration
public IContent PersistedContent { get; set; }
Property Value
View Source
TemplateAlias
The template alias to save
Declaration
public string TemplateAlias { get; set; }
Property Value
Type |
Description |
System.String |
|
View Source
UploadedFiles
Declaration
public List<ContentPropertyFile> UploadedFiles { get; }
Property Value
View Source
Variants
Declaration
public IEnumerable<ContentVariantSave> Variants { get; set; }
Property Value
Explicit Interface Implementations
View Source
IContentSave<IContent>.PersistedContent
The real persisted content object - used during inbound model binding
Declaration
IContent IContentSave<IContent>.PersistedContent { get; set; }
Returns