You may notice that the plugin registration tool allows you to add configuration data for each step of a plugin. This is generally in the form of an xml document. You can have both secure and unsecure config blocks. To use them, you write code like so:
public class My : IPlugin
{
private string m_secureConfig = null;
private string m_unsecureConfig = null;
....
and your initializer will be:
public MyPlugin(string unsecureConfig, string secureConfig)
{
m_secureConfig = secureC
↧