CustomLicense Class TIBCO Spotfire 7.0 API Reference
Base class for custom licenses.
Inheritance Hierarchy

System Object
  Spotfire.Dxp.Framework.License License
    Spotfire.Dxp.Application.Extension CustomLicense

Namespace: Spotfire.Dxp.Application.Extension
Assembly: Spotfire.Dxp.Application (in Spotfire.Dxp.Application.dll) Version: 18.10.8513.5432 (18.10.8513.5432)
Syntax

public abstract class CustomLicense : License
Remarks

Inherit this class and define license functions using the following pattern:
Examples

The following example illustrates how a custom license with a licensed function is defined:
public class MyLicense : CustomLicense
{
    new public class Functions : CustomLicense.Functions
    {
         public static readonly LicensedFunction MyFeature = CreateLicensedFunction(
             "myfeature", "My Feature", "Description of my feature");
    }
 }
Version Information

Supported in: 7.0, 6.5, 6.0, 5.5, 5.0
See Also