IWebSiteExtenderInitialise Method |
Initialises the web extender.
Namespace: VirtualRadar.Interface.WebSiteAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax void Initialise(
PluginStartupParameters pluginStartupParameters
)
Sub Initialise (
pluginStartupParameters As PluginStartupParameters
)
void Initialise(
PluginStartupParameters^ pluginStartupParameters
)
abstract Initialise :
pluginStartupParameters : PluginStartupParameters -> unit
Parameters
- pluginStartupParameters
- Type: VirtualRadar.InterfacePluginStartupParameters
The startup parameters passed to the plugin's Startup method.
Remarks
Once you call this method any changes to the properties, aside from
Enabled, are ignored. You can use
the
Enabled property to turn your plugins extensions on and off on the fly or you can dispose of the
extender entirely, but you cannot change anything else.
See Also