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.SDK
Assembly:  Linxter.SDK (in Linxter.SDK.dll) Version: 1.5.0.0 (1.5.0.0)

Syntax

C#
bool IsTerminated { get; }
Visual Basic (Declaration)
ReadOnly Property IsTerminated As Boolean

Field Value

true if this instance has been terminated, otherwise false.

Examples

CopyC#
if (registrationObject.IsTerminated)
{
    Console.WriteLine("Program terminated.");
    return;
}
CopyVB.NET
If registrationObject.IsTerminated Then
    Console.WriteLine("Program terminated.")
    Return
End If

See Also