Connectors Class TIBCO Spotfire 7.6 API Reference
Base class for registering new licensed functions for the Connector license.
Inheritance Hierarchy

SystemObject
  Spotfire.Dxp.Framework.LicenseLicense
    Spotfire.Dxp.Framework.LicensesConnectors

Namespace: Spotfire.Dxp.Framework.Licenses
Assembly: Spotfire.Dxp.Framework (in Spotfire.Dxp.Framework.dll) Version: 25.11.10401.3615 (25.11.10401.3615)
Syntax

C#
public abstract class Connectors : License

The Connectors type exposes the following members.

Constructors

  NameDescription
Protected methodConnectors
Initializes a new instance of the Connectors class.
Top
Methods

  NameDescription
Public methodCompare
Comparsed two licenses to determine sort order.
(Overrides LicenseCompare(LicensedFunction, LicensedFunction).)
Public methodEquals
Compare with another license based on id.
(Inherited from License.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Using base.GetHashCode()
(Inherited from License.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns the name and id of a license.
(Inherited from License.)
Top
Properties

  NameDescription
Public propertyDescription
Gets the localized description of this license.
(Inherited from License.)
Public propertyId
Gets the globally unique id of this license.
(Inherited from License.)
Public propertyLicensedFunctions
Return a list of all license functions in this class.
(Inherited from License.)
Public propertyName
Gets the localized name of this license.
(Inherited from License.)
Top
Examples

The following example illustrates how to use the Connector license to register a new licensed function:
C#
internal sealed class MyLicensedConnectorFunction : Connectors
{
   internal sealed new class Functions : Connectors.Functions
   {
       public static readonly LicensedFunction MyFeature = CreateLicensedFunction("myfeature", "My Feature");
   }
}
Version Information

Supported in: 5.5
See Also

Reference