gljakal's ToDo - Plugin developer's reference

PluginBase Constructor 

[This is preliminary documentation and subject to change.]

(Constructor)Initializes the plugin, using the Comunicator

public PluginBase(
   IComunicator parComunicator
);

Parameters

parComunicator
An IComunicator object

Example

The following example illustrates how to correctly create a plugin constructor:

public class MessagePlugin : ToDo.Plugin.PluginBase
{
    
    public MessagePlugin(ToDo.Plugin.IComunicator c) : base(c)
    {
        // Additional constructor logic, such as defining additional controls
        // and menus should be placed here...
    }
    ...
}

See Also

PluginBase Class | ToDo.Plugin Namespace