This function returns activation status of the protected software.
Syntax
public static bool IsSoftwareActivated()
Parameters
no parameters.
Return value
Returns true if software is activated.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.cs
Namespace: ItpLibraryNetClient;
Example
private
void
InitControls()
{
lIsActivated.Text = ItpLibraryNetWrapper.IsSoftwareActivated() ?
"yes"
:
"no"
;
}