| MvProcessInitialize 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 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
[!:RW.Server.Tcp.MvProcess]
process.
If command line arguments contains
-ilscomm_layer classname, the function initializes
a classname. The class classname must extends
MvProcess.
See Also