This function returns initialization status which depend from
InitAsync function.
When asynchronous
InitAsync function will be finished the IsInitialized will return 'true'.
Syntax
Public Shared Function IsInitialized() As Boolean
Parameters
No parameters.
Return value
Returns true if the library is initialized.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.vb
Namespace: ItpLibraryNetClient;
Example
Private
Shared
Sub
WaitForInit()
While
Not
IsInitialized()
Thread.Sleep(500)
End
While
End
Sub