CustomLicense Class TIBCO Spotfire 6.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: 13.19.7018.3940 (13.19.7018.3940)
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");
    }
 }
See Also