C# Class HereSay.PluginInitializer

Serves as a base-class for plug-ins by implementing N2.Plugin.IPluginInitializer to automatically registering the plug-in with the N2 engine (N2.Engine.IEngine).
Inheritance: N2.Plugin.IPluginInitializer
Show file Open project: jamestharpe/HereSay

Protected Properties

Property Type Description
Definitions IEnumerable

Public Methods

Method Description
Initialize ( N2 engine ) : void

Implements N2.Plugin.IPluginInitializer.Initialize to register the instance with N2 under its full type name.

Method Details

Initialize() public method

Implements N2.Plugin.IPluginInitializer.Initialize to register the instance with N2 under its full type name.
public Initialize ( N2 engine ) : void
engine N2 Specifies the instance to register /// the plug-in with.
return void

Property Details

Definitions protected property

Gets the ItemDefinitions available from N2 for decoration.
protected IEnumerable Definitions
return IEnumerable