Startup function called at the start of a system run.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public virtual void Startup(
	SystemData data
)
Visual Basic (Declaration)
Public Overridable Sub Startup ( _
	data As SystemData _
)
Visual C++
public:
virtual void Startup(
	SystemData^ data
)

Parameters

data
Type: RightEdge.Common..::.SystemData
A fully constructed SystemData object.

Implements

ISystem..::.Startup(SystemData)

Remarks

You do not need to use this function. It is called by RightEdge, and will call the parameterless Startup() function.

See Also