Base class for custom licenses.
Inheritance Hierarchy
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
Remarks
- Add public parameterless constructor or no constructor at all.
- Override the class CustomLicense Functions. and define the set of license functions as public static readonly using a call to CreateLicensedFunction(String, String, String).
Examples
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
See Also