How-to: Store Custom Data in a License

On This Page

In complex licensing scenarios you may want to store license specific data in a license such a list of named features, database names, SLA contract numbers, etc. DeployLX provides a named value collection that can used to save and retrieve this type of data.

For basic on/off style features consider using named features.

Adding Custom Data

The custom values collections are available only in the Advanced License Editor. DeployLX offers two separate named value collections that can be used to store arbitrary data in a license.

Secure Values

Contains data that is protected from modification. Modifying a value in this collection on the client will invalidate the license.

Example: The file formats that the user can save to.

Meta-Values

Contains data that may be modified on the client. This can be used to save settings or state with the license. It should be considered unsafe and used only for data that the user may modify.

Example: The next date when the user should be notified that they are using the trial version.

To Add Custom Data
  1. Open a license in the Advanced License Editor.
  2. Select the General Properties tab.
  3. Select Secure Values to open the name/value editor.
  4. Enter a name and assign a value for each desired custom value.

Using Custom Data

Once validated, you can retrieve custom data from a license. You can use this data to then modify the behavior of the application.

_license = SecureLicenseManager.Validate(Me, Nothing, Nothing)
If _license.Values("SaveToJpg") = "true" Then
    _saveToJpg.Enabled = True
End If
_license = SecureLicenseManager.Validate( this, null, null );
if( _license.Values[ "SaveToJpg" ] == "true" )
    _saveToJpg.Enabled = true;
Published : Sep 01, 2009
Updated : Jan 11, 2012
Views : 8920

Downloads

Folder

Loading comments...