Dynamic License Validation Rules

  • Create licenses to fit your needs
  • Change rules without re-compiling
  • Custom solutions for your valued customers

Time Limit

The Time Limit controls how long the software can be used before a new license is required.

  • Expire licenses on a specific date.
  • Or after a  specific amount of time has elapsed since the software is installed.
  • Or once the total running time has met the allowed time.
  • Create a software subscription that renews automatically with a license server.

Code Samples

Dim monitor = _license.GetTimeMonitor()
MessageBox.Show( _
  String.Format("You have {0} of {1} remaining to evaluate.", _ 
    monitor.TimeRemaining, _
    monitor.TotalTime))
var monitor = _license.GetTimeMonitor();
MessageBox.Show( 
  String.Format( "You have {0} of {1} remaining to evaluate.", 
    monitor.TimeRemaining, 
    monitor.TotalTime ) );