Class NSExtendedLicenseInfo

Constructors

NSExtendedLicenseInfo()

Declaration

NSExtendedLicenseInfo

Methods

GetAccumulatedNextCheckDate()

Declaration

DateTime GetAccumulatedNextCheckDate()

Examples

NSExtendedLicenseInfo thing;
DateTime accumulatedNextCheckDate = thing.GetAccumulatedNextCheckDate();

Returns

Type Description
DateTime

GetCanBeActivated()

Declaration

Bool GetCanBeActivated()

Examples

NSExtendedLicenseInfo thing;
Bool canBeActivated = thing.GetCanBeActivated();

Returns

Type Description
Bool

GetCurrent()

Declaration

NSLicenseInfo GetCurrent()

Examples

NSExtendedLicenseInfo thing;
NSLicenseInfo current = thing.GetCurrent();

Returns

Type Description
NSLicenseInfo

GetExtendedModuleLicenses()

Declaration

NSExtendedModuleLicense[] GetExtendedModuleLicenses()

Examples

NSExtendedLicenseInfo thing;
NSExtendedModuleLicense[] extendedModuleLicenses = thing.GetExtendedModuleLicenses();

Returns

Type Description
NSExtendedModuleLicense[]

GetNew()

Declaration

NSLicenseInfo GetNew()

Examples

NSExtendedLicenseInfo thing;
NSLicenseInfo new = thing.GetNew();

Returns

Type Description
NSLicenseInfo

GetReason()

Declaration

String GetReason()

Examples

NSExtendedLicenseInfo thing;
String reason = thing.GetReason();

Returns

Type Description
String

SetAccumulatedNextCheckDate(DateTime)

Declaration

Void SetAccumulatedNextCheckDate(DateTime accumulatedNextCheckDate)

Examples

NSExtendedLicenseInfo thing;
DateTime accumulatedNextCheckDate;
thing.SetAccumulatedNextCheckDate(accumulatedNextCheckDate);

Parameters

Type Name Description
DateTime accumulatedNextCheckDate

Returns

Type Description
Void

SetCanBeActivated(Bool)

Declaration

Void SetCanBeActivated(Bool canBeActivated)

Examples

NSExtendedLicenseInfo thing;
Bool canBeActivated;
thing.SetCanBeActivated(canBeActivated);

Parameters

Type Name Description
Bool canBeActivated

Returns

Type Description
Void

SetCurrent(NSLicenseInfo)

Declaration

Void SetCurrent(NSLicenseInfo current)

Examples

NSExtendedLicenseInfo thing;
NSLicenseInfo current;
thing.SetCurrent(current);

Parameters

Type Name Description
NSLicenseInfo current

Returns

Type Description
Void

SetExtendedModuleLicenses(NSExtendedModuleLicense[])

Declaration

Void SetExtendedModuleLicenses(NSExtendedModuleLicense[] extendedModuleLicenses)

Examples

NSExtendedLicenseInfo thing;
NSExtendedModuleLicense[] extendedModuleLicenses;
thing.SetExtendedModuleLicenses(extendedModuleLicenses);

Parameters

Type Name Description
NSExtendedModuleLicense[] extendedModuleLicenses

Returns

Type Description
Void

SetNew(NSLicenseInfo)

Declaration

Void SetNew(NSLicenseInfo new)

Examples

NSExtendedLicenseInfo thing;
NSLicenseInfo new;
thing.SetNew(new);

Parameters

Type Name Description
NSLicenseInfo new

Returns

Type Description
Void

SetReason(String)

Declaration

Void SetReason(String reason)

Examples

NSExtendedLicenseInfo thing;
String reason;
thing.SetReason(reason);

Parameters

Type Name Description
String reason

Returns

Type Description
Void