Gets a value to indicated if this instance has been terminated. Termination happens when the associated program is
removed from the Linxter ISB and all instances of that program get terminated. Any calls to the SDK after termination will fail
because the instance is no longer a valid instance from the back end and it cannot be re-registered because the associated Program no longer exists.
Namespace:
Linxter.SDKAssembly: Linxter.SDK (in Linxter.SDK.dll) Version: 1.5.0.0 (1.5.0.0)
Syntax
Field Value
true if this instance has been terminated, otherwise false.
Examples
if (registrationObject.IsTerminated) { Console.WriteLine("Program terminated."); return; }
If registrationObject.IsTerminated Then Console.WriteLine("Program terminated.") Return End If