CustomLicense Class TIBCO Spotfire 6.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: 14.10.7525.5058 (14.10.7525.5058)
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: 6.5, 6.0, 5.5, 5.0, 4.5
See Also