public static Guid Start()
'Declaration
Public Overloads Shared Function Start() As Guid
'Usage
Dim value As Guid value = MyReflection.Start()
Return Value
Reflection instance ID.
This method returns an instance ID of type Guid if the call is successful; otherwise an exception is thrown. The returned instance ID uniquely identifies the application instance and is used as an input parameter in ForceStop(Guid instanceId) to stop the instance. (Use the ForceStop()
method only after the Close()
method fails.
To create an application object for the first application instance you create, use CreateApplication("Reflection_yourUserID"). For example, if your user ID is �SmithJ�, the channel name for the first application instance you created with Start()
would be �Reflection_SmithJ�.
If you need to create application objects for more than one application instance, use the overloaded version, Start(string channelName)
, to create a known unique channelName for each application instance.