Interface IContent
Interface that must be implemented by a component that is to be stored in the content repository.
Inherited Members
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public interface IContent : IContentData
Properties
ContentGuid
Gets or sets the unique identifier of this IContent
Declaration
Guid ContentGuid { get; set; }
Property Value
Type | Description |
---|---|
System. |
ContentLink
Gets or sets a reference to this IContent
Declaration
ContentReference ContentLink { get; set; }
Property Value
Type | Description |
---|---|
Content |
ContentTypeID
Gets or sets the ID of the content type that describes this IContent
Declaration
int ContentTypeID { get; set; }
Property Value
Type | Description |
---|---|
System. |
IsDeleted
Gets or sets a value indicating whether this instance is deleted.
Declaration
bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System. |
Name
Gets or sets the name of this IContent
Declaration
string Name { get; set; }
Property Value
Type | Description |
---|---|
System. |
ParentLink
Gets or sets a link to the parent content item in the EPiServer system.
Declaration
ContentReference ParentLink { get; set; }
Property Value
Type | Description |
---|---|
Content |