interface IPlugin
{
string Description { get; }
string Name { get; }
void Initialize();
}
|
名称 |
类型 |
描述 |
默认值 |
选项 |
|
Description |
string |
Description of the plugins functionality |
||
|
Name |
string |
Name of the plugin |
Called after all enabled plugins are instantiated by the plugin manager. Initialize() should be used to register event handlers and perform other initialization processes.