Interface IReadOnlyContentBase
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
public interface IReadOnlyContentBase
Properties
View SourceContentTypeId
Gets the content type id
Declaration
int ContentTypeId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
CreateDate
Gets the creation date.
Declaration
DateTime CreateDate { get; }
Property Value
Type | Description |
---|---|
DateTime |
CreatorId
Gets the identifier of the user who created this entity.
Declaration
int CreatorId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Id
Gets the integer identifier of the entity.
Declaration
int Id { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Key
Gets the Guid unique identifier of the entity.
Declaration
Guid Key { get; }
Property Value
Type | Description |
---|---|
Guid |
Level
Gets the level of the entity.
Declaration
int Level { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Name
Gets the name of the entity.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
ParentId
Gets the identifier of the parent entity.
Declaration
int ParentId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Path
Gets the path to the entity.
Declaration
string Path { get; }
Property Value
Type | Description |
---|---|
System.String |
SortOrder
Gets the sort order of the entity.
Declaration
int SortOrder { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
UpdateDate
Gets the last update date.
Declaration
DateTime UpdateDate { get; }
Property Value
Type | Description |
---|---|
DateTime |
VersionId
Gets the version identifier.
Declaration
int VersionId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
WriterId
Gets the identifier of the writer.
Declaration
int WriterId { get; }
Property Value
Type | Description |
---|---|
System.Int32 |