CustomLicense Class TIBCO Spotfire 5.5 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: 11.15.5816.4413 (11.15.5816.4413)
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: 5.5, 5.0, 4.5, 4.0, 3.3
See Also