IPlugin
|
public interface IPluginApi
The IPluginApi type exposes the following members.
| Name | Description | |
|---|---|---|
| Execute | Obsolete. Execute a plugin method. This method is deprecated and should only be used for legacy plugins. | |
| Invoke | Invoke a plugin method. This method cannot work with legacy plugins. |
var pluginApi = ctx.Use<IPluginApi>(); var pluginResult = pluginApi.Invoke("ExamplePlugin", "SearchCandidates", parameters);