Class DefaultContentSoftLinkRepository
Repository for working with Soft
Inheritance
Namespace: EPiServer.DataAbstraction.Internal
Assembly: EPiServer.dll
Version: 12.0.3Syntax
[ServiceConfiguration]
[ServiceConfiguration]
public class DefaultContentSoftLinkRepository : Object, IContentSoftLinkRepository, IContentSoftLinkStatusService
Constructors
DefaultContentSoftLinkRepository(IPermanentLinkMapper, ServiceAccessor<ContentSoftLinkDB>)
Initializes a new instance of the Default
Declaration
public DefaultContentSoftLinkRepository(IPermanentLinkMapper permanentLinkMapper, ServiceAccessor<ContentSoftLinkDB> softLinkDataAccess)
Parameters
Type | Name | Description |
---|---|---|
IPermanent |
permanentLinkMapper | The permanent link mapper that should be used by this instance and any loaded links. |
Service |
softLinkDataAccess | An accessor method that retrieves the soft link data access instance that should be used by this instance. |
Methods
Delete(ContentReference, String)
Delete all softlink references for ownerContent
with specific language
.
Declaration
public virtual void Delete(ContentReference ownerContent, string language)
Parameters
Type | Name | Description |
---|---|---|
Content |
ownerContent | The content reference |
System. |
language | The language |
GetBrokenLinks(ContentReference, Int32, Int32)
Gets broken links from the database
Declaration
public virtual IEnumerable<SoftLink> GetBrokenLinks(ContentReference root, int skipCount, int maxResults)
Parameters
Type | Name | Description |
---|---|---|
Content |
root | The root item. |
System. |
skipCount | The skip count. |
System. |
maxResults | The max results. |
Returns
Type | Description |
---|---|
System. |
GetBrokenLinksCount(ContentReference)
Gets total number of broken links from the database
Declaration
public virtual int GetBrokenLinksCount(ContentReference root)
Parameters
Type | Name | Description |
---|---|---|
Content |
root | The root item. |
Returns
Type | Description |
---|---|
System. |
Number of broken link |
GetUncheckedLinks(DateTime, TimeSpan, Int32)
Get Unchecked links from the database
Declaration
public virtual IList<SoftLink> GetUncheckedLinks(DateTime lastCheckedDate, TimeSpan ignoreWorkingLinksInterval, int maxNumberOfLinks)
Parameters
Type | Name | Description |
---|---|---|
System. |
lastCheckedDate | Date when the links were last checked |
System. |
ignoreWorkingLinksInterval | The time back in history where we don't want to recheck working links. |
System. |
maxNumberOfLinks | Maximum number of links that should be returnd |
Returns
Type | Description |
---|---|
System. |
Links that has not been checked prior to the start date |
Load(ContentReference)
Loads the links that are being referenced by an content item.
Declaration
public virtual IList<SoftLink> Load(ContentReference contentLink)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content item |
Returns
Load(ContentReference, Boolean)
Loads the links that are being referenced by or references an content item.
Declaration
public virtual IList<SoftLink> Load(ContentReference contentLink, bool reversed)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content item |
System. |
reversed | If when check should be performed on links pointing to an item instead |
Returns
Load(Guid, Boolean)
Loads the links that are being referenced by or references an content item.
Declaration
public virtual IList<SoftLink> Load(Guid contentGuid, bool reversed)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentGuid | The unique id of the content item. |
System. |
reversed | If when check should be performed on links pointing to an item instead |
Returns
Load(String)
Loads the links that reference the file specified with a path.
Declaration
public virtual IList<SoftLink> Load(string path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | The path. |
Returns
Type | Description |
---|---|
System. |
A collection of Soft |
Load(String, Boolean)
Loads the links that reference the file specified with a path.
Declaration
public virtual IList<SoftLink> Load(string path, bool exactMatch)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | The path. |
System. |
exactMatch | if set to |
Returns
Type | Description |
---|---|
System. |
A collection of Soft |
Save(ContentReference, CultureInfo, IList<SoftLink>)
Saves all the specified Soft
Declaration
public virtual void Save(ContentReference ownerContent, CultureInfo ownerLanguage, IList<SoftLink> links)
Parameters
Type | Name | Description |
---|---|---|
Content |
ownerContent | The owner content link. |
System. |
ownerLanguage | The language, specify null to re-save links for all languages |
System. |
links | The collection of Soft |
Save(ContentReference, CultureInfo, IList<SoftLink>, Boolean)
Saves all the specified Soft
Declaration
public virtual void Save(ContentReference ownerContent, CultureInfo ownerLanguage, IList<SoftLink> links, bool appendOnly)
Parameters
Type | Name | Description |
---|---|---|
Content |
ownerContent | The owner content link. |
System. |
ownerLanguage | The language, specify null to re-save links for all languages |
System. |
links | The collection of Soft |
System. |
appendOnly | If links should be appended to the existing links |
SaveLinkStatus(IEnumerable<SoftLink>)
Save softlink status
Declaration
public virtual void SaveLinkStatus(IEnumerable<SoftLink> links)
Parameters
Type | Name | Description |
---|---|---|
System. |
links | A list of Soft |