Interface IContentTypeRepository<T>
Defines methods for interacting with a data repository where a type of class Content
Namespace: EPiServer.DataAbstraction
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public interface IContentTypeRepository<T>
where T : ContentType
Type Parameters
Name | Description |
---|---|
T | The Content |
Methods
Copy(T)
Creates a copy of the specified content type in the data repository and returns it.
Declaration
T Copy(T contentType)
Parameters
Type | Name | Description |
---|---|---|
T | contentType | Type of the content. |
Returns
Type | Description |
---|---|
T | The copy of the Content |
Copy(Int32)
Creates a copy of the specified content type in the data repository and returns it.
Declaration
T Copy(int id)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The id of the Content |
Returns
Type | Description |
---|---|
T | The copy of the Content |
Copy(Type)
Creates a copy of the specified content type in the data repository and returns it.
Declaration
T Copy(Type modelType)
Parameters
Type | Name | Description |
---|---|---|
System. |
modelType | The underlying model System. |
Returns
Type | Description |
---|---|
T | The copy of the Content |
Delete(T)
Deletes a Content
Declaration
void Delete(T contentType)
Parameters
Type | Name | Description |
---|---|---|
T | contentType | Type of the content. |
Delete(Int32)
Deletes a Content
Declaration
void Delete(int id)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The Content |
Delete(Type)
Deletes a Content
Declaration
void Delete(Type modelType)
Parameters
Type | Name | Description |
---|---|---|
System. |
modelType | The underlying System. |
List()
Lists all Content
Declaration
IEnumerable<T> List()
Returns
Type | Description |
---|---|
System. |
Enumeration of Content |
Load(Guid)
Loads a Content
Declaration
T Load(Guid guid)
Parameters
Type | Name | Description |
---|---|---|
System. |
guid | The Content |
Returns
Type | Description |
---|---|
T | The Content |
Load(Int32)
Loads a Content
Declaration
T Load(int id)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The Content |
Returns
Type | Description |
---|---|
T | The Content |
Load(String)
Loads a Content
Declaration
T Load(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The Content |
Returns
Type | Description |
---|---|
T | The Content |
Load(Type)
Loads a Content
Declaration
T Load(Type modelType)
Parameters
Type | Name | Description |
---|---|---|
System. |
modelType | The underlying model System. |
Returns
Type | Description |
---|---|
T | The Content |
Save(T)
Saves the specified Content
Declaration
void Save(T contentType)
Parameters
Type | Name | Description |
---|---|---|
T | contentType | Type of the content. |