DeployLX Software Protection System

AsyncValidationMethod Delegate

Defines a delegate for methods that can be called asynchronously via an AsyncValidationRequest.

Syntax

Public Delegate Function AsyncValidationMethod ( _
	context As SecureLicenseContext, _
	reportError As Boolean, _
	args As Object() _
) As ValidationResult
public delegate ValidationResult AsyncValidationMethod(
	SecureLicenseContext context,
	bool reportError,
	Object[] args
)

Parameters

context
The current licensing context.
reportError
Indicates if errors should be reported to the context.
args
Additional arguments unique to the method.

Return Value

Returns one of the ValidationResult values indicating the success of the validation.

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

See Also