Click or drag to resize
TesseractOcrEngineSetLicense Method
Sets the license information.

Namespace: DevScope.Ocr.Tesseract.WindowsPhone
Assembly: DevScope.Ocr.Tesseract.WindowsPhone (in DevScope.Ocr.Tesseract.WindowsPhone.dll) Version: 255.255.255.255
Syntax
public static TesseractOcrLicenseStatus SetLicense(
	string licenseName,
	string licenseEmail,
	string licenseKey
)

Parameters

licenseName
Type: SystemString
Name of the license.
licenseEmail
Type: SystemString
The license email.
licenseKey
Type: SystemString
The license key.

Return Value

Type: TesseractOcrLicenseStatus
The status of the license activation operation as a TesseractOcrLicenseStatus instance
Examples
This example shows how to set the license information on the Ocr engine
// *********************************************************
// Please change the strings in the parameters of the call to "TesseractOcrEngine.SetLicense" according to the
// license information that you have received by email from Devscope.
//    "License Name"  : The name to whom the license was emmited
//    "License Email" : The email to whom the license was emmited
//    "Unlock key"    : The license key received in the email

// If you have any problems please contact Devscope via email to support@devscope.net 
// *********************************************************

var status = TesseractOcrEngine.SetLicense("License Name", "License Email", "Unlock key");
See Also