PluginsManager Class

Methods to manage Plug-ins.

Definition

Namespace: SMath.Manager
Assembly: SMath.Manager (in SMath.Manager.dll) Version: 1.73.9126.0
C#
public sealed class PluginsManager
Inheritance
Object    PluginsManager

Constructors

PluginsManagerInitializes a new instance of the PluginsManager class

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetConfigFileNameByProgramVersion

Returns the name of the plug-in configuration file which is specific for ProgramInfo.

  Tip

Separation of configuration files by application versions is required because the supported versions and options (enabled/disabled, etc) may vary for the same plug-in depending on the application version.

GetHashCodeServes as the default hash function.
(Inherited from Object)
GetPluginsHash Gets a hash for currently loaded Plug-ins.
GetTypeGets the Type of the current instance.
(Inherited from Object)
IsPluginInstalled(Guid) Checks whether the specified plug-in is installed.
IsPluginInstalled(Guid, PluginInfo) Checks whether the specified plug-in is installed and retrieves the information about it.
LoadAll Loads multiple plug-in assemblies and IPlugin implementations contained in them according to the specified metadata.
LoadFromAssembly Loads IPlugin implementations from a previously loaded plug-in assembly.
LoadOne(IAppEnv, IPluginInitialMeta) Loads a plug-in assembly according to the specified metadata and then loads all IPlugin implementations from it.
LoadOne(IAppEnv, String) Loads a plug-in assembly from the specified location and then loads all IPlugin implementations from it.
LoadReferenced<T> Loads a plug-in class from a referenced assembly.
LoadStandardMetadata Loads metadata for standard plug-ins from the specified directory.
LoadThirdPartyMetadata Loads metadata for third-party plug-ins from the specified base path.
ToStringReturns a string that represents the current object.
(Inherited from Object)
TryLoadMetadata Checks whether the specified file is a plug-in assembly file and if so then loads its metadata.
TryParseGuid Attempts to parse the specified string as Guid.
UpdateConfigFile Saves the information about a plug-in to the version specific plug-in configuration file.

Events

AllPluginsLoaded Occurs when the entire collection of plug-in assemblies is loaded by LoadAll(IAppEnv, LanguageInfo, PluginsStatusEventHandler, IEnumerable<IPluginInitialMeta>, List<PluginInfo>).
PluginAssemblyLoadFailed Occurs when a plug-in assembly is not loaded because an exception is caught during load of the assembly.
PluginLoaded Occurs when a plug-in assembly is loaded and all implementations of IPlugin contained in it are instantiated.
PluginLoadFailed Occurs when a plug-in assembly is not loaded because an exception is caught during load of plug-in classes.
PluginVersionMismatch Occurs when a plug-in assembly is not loaded because its version is not supported by the program.

Fields

ActiveVersionConfig Base name of the plug-in configuration file.
DefaultDirectoryName Default name of subfolder where the plug-in are located. It can be appended to the program installation folder, to the user settings folder, etc.

See Also