Show / Hide Table of Contents

Class NSLicenseOwner

Carrier object for LicenseOwner.

Syntax

Constructors

NSLicenseOwner()

Initializes a new instance of the NSLicenseInfo class.

Declaration
NSLicenseOwner

Methods

GetDescription()

Carrier object for LicenseOwner.

Declaration
String GetDescription()
Returns
Type Description
String
Examples
NSLicenseOwner thing;
String description = thing.GetDescription();

GetName()

Carrier object for LicenseOwner.

Declaration
String GetName()
Returns
Type Description
String

The name of the license owner.

Examples
NSLicenseOwner thing;
String name = thing.GetName();

GetRestrictedModuleLicenses()

Carrier object for LicenseOwner.

Declaration
NSModuleLicenseLink[] GetRestrictedModuleLicenses()
Returns
Type Description
NSModuleLicenseLink[]
Examples
NSLicenseOwner thing;
NSModuleLicenseLink[] restrictedModuleLicenses = thing.GetRestrictedModuleLicenses();

GetUnrestrictedModuleLicenses()

Carrier object for LicenseOwner.

Declaration
NSModuleLicenseLink[] GetUnrestrictedModuleLicenses()
Returns
Type Description
NSModuleLicenseLink[]

The unrestricted module licenses that this license owner.

Examples
NSLicenseOwner thing;
NSModuleLicenseLink[] unrestrictedModuleLicenses = thing.GetUnrestrictedModuleLicenses();

SetDescription(String)

Carrier object for LicenseOwner.

Declaration
Void SetDescription(String description)
Parameters
Type Name Description
String description
Returns
Type Description
Void
Examples
NSLicenseOwner thing;
String description;
thing.SetDescription(description);

SetName(String)

Carrier object for LicenseOwner.

Declaration
Void SetName(String name)
Parameters
Type Name Description
String name

The name of the license owner.

Returns
Type Description
Void
Examples
NSLicenseOwner thing;
String name;
thing.SetName(name);

SetRestrictedModuleLicenses(NSModuleLicenseLink[])

Carrier object for LicenseOwner.

Declaration
Void SetRestrictedModuleLicenses(NSModuleLicenseLink[] restrictedModuleLicenses)
Parameters
Type Name Description
NSModuleLicenseLink[] restrictedModuleLicenses
Returns
Type Description
Void
Examples
NSLicenseOwner thing;
NSModuleLicenseLink[] restrictedModuleLicenses;
thing.SetRestrictedModuleLicenses(restrictedModuleLicenses);

SetUnRestrictedModuleLicenses(NSModuleLicenseLink[])

Carrier object for LicenseOwner.

Declaration
Void SetUnrestrictedModuleLicenses(NSModuleLicenseLink[] unrestrictedModuleLicenses)
Parameters
Type Name Description
NSModuleLicenseLink[] unrestrictedModuleLicenses

The unrestricted module licenses that this license owner.

Returns
Type Description
Void
Examples
NSLicenseOwner thing;
NSModuleLicenseLink[] unrestrictedModuleLicenses;
thing.SetUnrestrictedModuleLicenses(unrestrictedModuleLicenses);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top