Class NSExtendedLicenseInfo
Syntax
Constructors
NSExtendedLicenseInfo()
Declaration
Methods
GetAccumulatedNextCheckDate()
Declaration
DateTime GetAccumulatedNextCheckDate()
Returns
Examples
NSExtendedLicenseInfo thing;
DateTime accumulatedNextCheckDate = thing.GetAccumulatedNextCheckDate();
GetCanBeActivated()
Declaration
Returns
Examples
NSExtendedLicenseInfo thing;
Bool canBeActivated = thing.GetCanBeActivated();
GetCurrent()
Declaration
NSLicenseInfo GetCurrent()
Returns
Examples
NSExtendedLicenseInfo thing;
NSLicenseInfo current = thing.GetCurrent();
GetExtendedModuleLicenses()
Declaration
NSExtendedModuleLicense[] GetExtendedModuleLicenses()
Returns
Examples
NSExtendedLicenseInfo thing;
NSExtendedModuleLicense[] extendedModuleLicenses = thing.GetExtendedModuleLicenses();
GetNew()
Declaration
Returns
Examples
NSExtendedLicenseInfo thing;
NSLicenseInfo new = thing.GetNew();
GetReason()
Declaration
Returns
Examples
NSExtendedLicenseInfo thing;
String reason = thing.GetReason();
SetAccumulatedNextCheckDate(DateTime)
Declaration
Void SetAccumulatedNextCheckDate(DateTime accumulatedNextCheckDate)
Parameters
Type |
Name |
Description |
DateTime |
accumulatedNextCheckDate |
|
Returns
Examples
NSExtendedLicenseInfo thing;
DateTime accumulatedNextCheckDate;
thing.SetAccumulatedNextCheckDate(accumulatedNextCheckDate);
SetCanBeActivated(Bool)
Declaration
Void SetCanBeActivated(Bool canBeActivated)
Parameters
Type |
Name |
Description |
Bool |
canBeActivated |
|
Returns
Examples
NSExtendedLicenseInfo thing;
Bool canBeActivated;
thing.SetCanBeActivated(canBeActivated);
SetCurrent(NSLicenseInfo)
Declaration
Void SetCurrent(NSLicenseInfo current)
Parameters
Returns
Examples
NSExtendedLicenseInfo thing;
NSLicenseInfo current;
thing.SetCurrent(current);
SetExtendedModuleLicenses(NSExtendedModuleLicense[])
Declaration
Void SetExtendedModuleLicenses(NSExtendedModuleLicense[] extendedModuleLicenses)
Parameters
Returns
Examples
NSExtendedLicenseInfo thing;
NSExtendedModuleLicense[] extendedModuleLicenses;
thing.SetExtendedModuleLicenses(extendedModuleLicenses);
SetNew(NSLicenseInfo)
Declaration
Void SetNew(NSLicenseInfo new)
Parameters
Returns
Examples
NSExtendedLicenseInfo thing;
NSLicenseInfo new;
thing.SetNew(new);
SetReason(String)
Declaration
Void SetReason(String reason)
Parameters
Type |
Name |
Description |
String |
reason |
|
Returns
Examples
NSExtendedLicenseInfo thing;
String reason;
thing.SetReason(reason);