| MvProcessInitialize 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 public static bool Initialize(
string[] argv = null
)
Public Shared Function Initialize (
Optional argv As String() = Nothing
) As Boolean
public:
static bool Initialize(
array<String^>^ argv = nullptr
)
Parameters
- argv (Optional)
- Type: SystemString
The command line arguments.
Return Value
Type:
Booleantrue if the process is initialized.
Remarks
By default this function initialize a
MvProcess
process.
If command line arguments contains
-ilscomm_layer classname, the function initializes
a classname. The class classname must extends
MvProcess.
See Also