Anvil
Loading...
Searching...
No Matches
Anvil.Plugins.PluginManager Class Referencesealed

Loads all available plugins and their types for service initialisation. More...

+ Inheritance diagram for Anvil.Plugins.PluginManager:
+ Collaboration diagram for Anvil.Plugins.PluginManager:

Public Member Functions

PluginGetPlugin (Assembly assembly)
 Locates the plugin associated with the specified assembly.
 
PluginGetPlugin (string pluginName)
 Gets the plugin from the specified name.
 
string? GetPluginDirectory (Assembly pluginAssembly)
 Gets the install directory of the specified plugin.
 
bool IsPluginAssembly (Assembly assembly)
 Gets if the specified assembly is the primary assembly for a plugin.
 
bool IsPluginLoaded (string pluginName)
 
Plugin LoadPlugin (string pluginRoot)
 Loads an isolated anvil plugin from the specified plugin folder at runtime.
 
WeakReference UnloadPlugin (Plugin plugin, bool waitForUnload=true)
 Unloads an isolated anvil plugin at runtime.
 

Detailed Description

Loads all available plugins and their types for service initialisation.

Member Function Documentation

◆ GetPlugin() [1/2]

Plugin? Anvil.Plugins.PluginManager.GetPlugin ( Assembly assembly)
inline

Locates the plugin associated with the specified assembly.

Parameters
assemblyThe assembly to search.
Returns
The associated plugin, otherwise null.

◆ GetPlugin() [2/2]

Plugin? Anvil.Plugins.PluginManager.GetPlugin ( string pluginName)
inline

Gets the plugin from the specified name.

Returns
The associated plugin, otherwise null.

◆ GetPluginDirectory()

string? Anvil.Plugins.PluginManager.GetPluginDirectory ( Assembly pluginAssembly)
inline

Gets the install directory of the specified plugin.

Parameters
pluginAssemblyThe assembly of the plugin, e.g. typeof(MyService).Assembly
Returns
The install directory for the specified plugin.
Exceptions
ArgumentExceptionThrown if the specified assembly is not a plugin.

◆ IsPluginAssembly()

bool Anvil.Plugins.PluginManager.IsPluginAssembly ( Assembly assembly)
inline

Gets if the specified assembly is the primary assembly for a plugin.

Parameters
assemblyThe assembly to query.
Returns
True if the assembly is a plugin, otherwise false.

◆ LoadPlugin()

Plugin Anvil.Plugins.PluginManager.LoadPlugin ( string pluginRoot)
inline

Loads an isolated anvil plugin from the specified plugin folder at runtime.

Parameters
pluginRootThe root folder containing the plugin assembly, and other resources.
Returns
The loaded plugin.
Exceptions
ArgumentExceptionThrown if the plugin folder/assembly is missing, or otherwise cannot be loaded.
InvalidOperationExceptionThrown if the plugin is already loaded, or if the specified plugin is not configured as an isolated plugin.

◆ UnloadPlugin()

WeakReference Anvil.Plugins.PluginManager.UnloadPlugin ( Plugin plugin,
bool waitForUnload = true )
inline

Unloads an isolated anvil plugin at runtime.

Parameters
pluginThe plugin to unload - see GetPlugin(string).
waitForUnloadIf true, the server will block the current main thread until the plugin has been unloaded.
Returns
A weak reference to the unloading plugin assembly. Query the WeakReference.IsAlive property to confirm the plugin has unloaded.
Exceptions
InvalidOperationException

The documentation for this class was generated from the following file: