| MvProcessInitialization Method |
Initializes a stand-alone component.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax protected virtual bool Initialization(
string[] argv
)
Protected Overridable Function Initialization (
argv As String()
) As Boolean
protected:
virtual bool Initialization(
array<String^>^ argv
)
Parameters
- argv
- Type: SystemString
The arguments of the command line
Return Value
Type:
Booleantrue 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