Interface IContentVersionRepository
Definies signature for Content
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public interface IContentVersionRepository
Methods
Delete(ContentReference)
Delete a single version of a Content
Declaration
void Delete(ContentReference contentLink)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content link. |
List(VersionFilter, Int32, Int32, out Int32)
Lists all versions that matches the filter
Declaration
IEnumerable<ContentVersion> List(VersionFilter filter, int startIndex, int maxRows, out int totalCount)
Parameters
Type | Name | Description |
---|---|---|
Version |
filter | The filter used |
System. |
startIndex | The start index, used for paging |
System. |
maxRows | The maximum number of rows returned |
System. |
totalCount | The total amount of matched versions |
Returns
Type | Description |
---|---|
System. |
A list of versions, if no versions where matched an empty list will be returned |
Load(ContentReference)
Loads the version.
Declaration
ContentVersion Load(ContentReference contentLink)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content link. |
Returns
Type | Description |
---|---|
Content |
LoadCommonDraft(ContentReference, String)
Loads the common draft.
Declaration
ContentVersion LoadCommonDraft(ContentReference contentLink, string language)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content link to load common draft for. |
System. |
language | The language. |
Returns
Type | Description |
---|---|
Content |
CommonDraft if it exist, otherwise Published, If no published exist the latest saved version is returned |
LoadPublished(ContentReference)
Loads the published version
Declaration
ContentVersion LoadPublished(ContentReference contentLink)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content link. |
Returns
Type | Description |
---|---|
Content |
LoadPublished(ContentReference, String)
Loads the published version a page with current language selection if the languageBranch is null otherwise loads the published version a page for a specific language
Declaration
ContentVersion LoadPublished(ContentReference contentLink, string languageBranch)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content link. |
System. |
languageBranch | The language branch. |
Returns
Type | Description |
---|---|
Content |
SetCommonDraft(ContentReference)
Sets the specified version as common draft.
Declaration
void SetCommonDraft(ContentReference contentLink)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content link. |