DeployLX Software Protection System

ShouldValidateLicenseFilter Delegate

Defines a delegate that is called by Validate(Object, Type, LicenseValidationRequestInfo) to progamatically filter licenses from use.

Syntax

Public Delegate Function ShouldValidateLicenseFilter ( _
	license As SecureLicense, _
	context As SecureLicenseContext _
) As Boolean
public delegate bool ShouldValidateLicenseFilter(
	SecureLicense license,
	SecureLicenseContext context
)

Parameters

license
The license to filter.
context
The current validation context.

Return Value

Returns true if the license should be tested for validation, otherwise false to skip the license.

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

See Also