This function obtains total days of the 'live' period. The registered software can be operable only during this period. After the period is elapsed the software will stop working.
Syntax
Public Shared Function GetLicenseExpirationDaysCount() As Integer
Parameters
No parameters.
Return value
Returns quantity of days which are available for the software.
Requirements
File: ItpLibraryNetWrapper.vb
Namespace: ItpLibraryNetClient;
Example
Private
Sub
InitItpControls()
lLicenseExpirationDaysTotal.Text = ItpLibraryNetWrapper.GetLicenseExpirationDaysCount().ToString(CultureInfo.InvariantCulture)
End
Sub