DeployLX Software Protection System

LicenseHelpAttribute..::..DontCheckClock Property

Gets or sets a value that indicates if the machine's clock should not be checked for alterations before validating a license.

Syntax

Public Property DontCheckClock As Boolean
	Get
	Set
public bool DontCheckClock { get; set; }

Remarks

Normally the clock will only be checked if a license contains a limit that depends on a valid date and time to operate correctly. Setting this property to true will force all license checks to ignore the validity of the system clock, even with time sensitive limits, potentially exposing the license to abuse.

Examples

This example demonstrates how to declare the LicenseHelpAttribute in your AssemblyInfo file and configure the properties of the attribute. In this sample, the Company, Email, and Phone properties are set. Other properties are set in the same manner and may be added in any order.
Visual Basic
Imports DeployLX.Licensing.v5

...

<Assembly: LicenseHelp(Company:="XHEO INC", Email:="support@xheo.com", Website:="http://www.deploylx.com")>
C#
using DeployLX.Licensing.v5;

...

[assembly: LicenseHelp( Company="XHEO INC", Email="support@xheo.com", Website="http://www.deploylx.com" )]

Assembly:  DeployLX.Licensing.v5 (in DeployLX.Licensing.v5.dll)

See Also