Class PluginInitInjector
The type that handles value injecting into a plugin's initialization methods.
Inherited Members
Namespace: IPA.Loader
Assembly: IPA.Loader.dll
Syntax
public static class PluginInitInjector
Remarks
The default injectors and what they provide are shown in this table.
Parameter Type | Injected Value |
---|---|
Logger | A StandardLogger specialized for the plugin being injected |
PluginMetadata | The PluginMetadata of the plugin being injected |
Config | A Config object for the plugin being injected.
These parameters may have Config.NameAttribute and Config.PreferAttribute to control how it is constructed. |
IAntiMalware | The IAntiMalware instance which should be used for any potentially dangerous files. |
Methods
| Improve this Doc View SourceAddInjector(Type, PluginInitInjector.InjectParameter)
Adds an injector to be used when calling future plugins' Init methods.
Declaration
public static void AddInjector(Type type, PluginInitInjector.InjectParameter injector)
Parameters
Type | Name | Description |
---|---|---|
Type | type | the type of the parameter. |
PluginInitInjector.InjectParameter | injector | the function to call for injection. |
AddInjector(Type, PluginInitInjector.InjectParameterNested)
Adds an injector to be used when calling future plugins' Init methods.
Declaration
public static void AddInjector(Type type, PluginInitInjector.InjectParameterNested injector)
Parameters
Type | Name | Description |
---|---|---|
Type | type | the type of the parameter. |
PluginInitInjector.InjectParameterNested | injector | the function to call for injection. |
Inject<T>(PluginInitInjector.InjectedValueProvider, ParameterInfo)
Invokes the provider with param
and T
and casts the result to T
.
Declaration
public static T Inject<T>(this PluginInitInjector.InjectedValueProvider provider, ParameterInfo param)
Parameters
Type | Name | Description |
---|---|---|
PluginInitInjector.InjectedValueProvider | provider | the provider to invoke. |
ParameterInfo | param | the parameter to provide for |
Returns
Type | Description |
---|---|
T | the value requested, or null. |
Type Parameters
Name | Description |
---|---|
T | the type of object to be injected |