Click or drag to resize

MvProcessInitialization Method

Initializes a stand-alone component.

Namespace:  RW.Server.Component
Assembly:  RW.Server.Component (in RW.Server.Component.dll) Version: 7.2.0.0 (7.2.0.0)
Syntax
protected virtual bool Initialization(
	string[] argv
)

Parameters

argv
Type: SystemString
The arguments of the command line

Return Value

Type: Boolean
true if the initialization was successful, false otherwise.
Remarks

It must be invoked by any initialization member function that belongs to a subtype of .

This method first initializes the process by calling LocalInitialize(String). If that method returns true, it parses and interprets the command line arguments.

See Also