This function returns expiration status of the license code.
Syntax
public static bool IsLicenseExpired()
Parameters
no parameters.
Return value
Returns true if license is expired.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.cs
Namespace: ItpLibraryNetClient;
Example
private void InitControls()
{
lIsLicenseExpired.Text = ItpLibraryNetWrapper.IsLicenseExpired() ? "yes" : "no";
}