This function returns protection status of software (protected or not protected). You can use this function during development process.
Syntax
public static bool IsSoftwareProtected()
Parameters
no parameters.
Return value
Returns true if software is protected.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.cs
Namespace: ItpLibraryNetClient;
Example
private
void
InitControls()
{
lIsProtected.Text = ItpLibraryNetWrapper.IsSoftwareProtected() ?
"yes"
:
"no"
;
}