IPluginApi Interface

Provides methods for interacting with Casewhere plugins.

Definition

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
C#
public interface IPluginApi

Example

C#
                    var pluginApi = ctx.Use<IPluginApi>();
var pluginResult = pluginApi.Invoke("ExamplePlugin", "SearchCandidates", parameters);
                  

Methods

Execute Execute a plugin method. This method is deprecated and should only be used for legacy plugins.
Obsolete
Invoke Invoke a plugin method. This method cannot work with legacy plugins.

See Also