Interface IContentSoftLinkRepository
Repository for working with Soft
Namespace: EPiServer.DataAbstraction
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public interface IContentSoftLinkRepository
Methods
Delete(ContentReference, String)
Delete all softlink references for ownerContent
with specific language
.
Declaration
void Delete(ContentReference ownerContent, string language)
Parameters
Type | Name | Description |
---|---|---|
Content |
ownerContent | The content reference |
System. |
language | The language |
Load(ContentReference)
Loads the links that are being referenced by an content item.
Declaration
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
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
IList<SoftLink> Load(Guid contentGuid, bool reversed)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentGuid | 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
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
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>, Boolean)
Saves all the specified Soft
Declaration
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 |