Interface IPlugInDescriptorRepository
Repository that manages Plug
Namespace: EPiServer.PlugIn
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public interface IPlugInDescriptorRepository
Methods
List()
Lists all descriptors
Declaration
IEnumerable<PlugInDescriptor> List()
Returns
Type | Description |
---|---|
System. |
A list of all descriptors |
List(Type)
Lists all descriptors of specified plugin type
Declaration
IEnumerable<PlugInDescriptor> List(Type pluginType)
Parameters
Type | Name | Description |
---|---|---|
System. |
pluginType | The plugin type to list desciptors for |
Returns
Type | Description |
---|---|
System. |
A list of all descriptors of specified type |
Save(PlugInDescriptor)
Saves a descriptor
Declaration
void Save(PlugInDescriptor plugInDescriptor)
Parameters
Type | Name | Description |
---|---|---|
Plug |
plugInDescriptor | The descriptor to save |
Events
Saved
Event for when descriptors are saved
Declaration
event EventHandler<PlugInDescritorChangedEventArgs> Saved
Event Type
Type | Description |
---|---|
System. |