Callback delegate that is called when a license key generated by making a call to GenerateLicenseKeys with "numberOfLicenseKeys" to generate.

Namespace: SimpleMode.SecureLicenseManager.LicenseGenerator
Assembly: SimpleMode.SecureLicenseManager.LicenseGenerator (in SimpleMode.SecureLicenseManager.LicenseGenerator.dll) Version: 1.5.5120.0 (1.5.5120.0)

Syntax

C#
public delegate bool GenerateLicenseKeyDelegate(
	string licenseKey
)
Visual Basic
Public Delegate Function GenerateLicenseKeyDelegate ( _
	licenseKey As String _
) As Boolean
Visual C++
public delegate bool GenerateLicenseKeyDelegate(
	String^ licenseKey
)

Parameters

licenseKey
Type: System..::..String
The generated license key in a call to GenerateLicenseKeys.

Return Value

return true to continue the license key generation or false to stop the license generation.

See Also