Click or drag to resize
IPluginStartup Method
Called by VRS towards the end of the splash screen, after the web server etc. have been built up but before the main window is displayed. This is called on a background thread. Do not make any calls that must be made on the GUI thread from here.

Namespace: VirtualRadar.Interface
Assembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
void Startup(
	PluginStartupParameters parameters
)

Parameters

parameters
Type: VirtualRadar.InterfacePluginStartupParameters
Remarks
The plugin should use this method to read its configuration, hook any events that it is interested in and generally start doing some useful work. Any exceptions thrown by this method will be displayed to the user and recorded in the log but will not cause the program to stop, nor will they cause the plugin to be unloaded.
See Also