This function returns initialization status which depend from
InitAsync function.
When asynchronous
InitAsync function will be finished the IsInitialized will return 'true'.
Syntax
public static bool IsInitialized()
Parameters
No parameters.
Return value
Returns true if the library is initialized.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.cs
Namespace: ItpLibraryNetClient;
Example
void
WaitForInit()
{
while
(!IsInitialized())
Thread.Sleep(500);
}