DeveloperLicenseCheckDeveloperLicenseString Method |
This function allows you to validate TLL developer license using supplied parameter
Namespace:
TreeksLicensingLibrary2
Assembly:
TreeksLicensingLibrary2 (in TreeksLicensingLibrary2.dll) Version: 2.1.8318.42066 (2.1.0.0)
Syntax public static bool CheckDeveloperLicenseString(
string strLicense,
ref License l = null,
ref string strErr = ""
)
Public Shared Function CheckDeveloperLicenseString (
strLicense As String,
Optional ByRef l As License = Nothing,
Optional ByRef strErr As String = ""
) As Boolean
public:
static bool CheckDeveloperLicenseString(
String^ strLicense,
License^% l = nullptr,
String^% strErr = L""
)
static member CheckDeveloperLicenseString :
strLicense : string *
?l : License byref *
?strErr : string byref
(* Defaults:
let _l = defaultArg l null
let _strErr = defaultArg strErr ""
*)
-> bool
Parameters
- strLicense
- Type: SystemString
License to be checked - l (Optional)
- Type: TreeksLicensingLibrary2License
Optional ref license object which will hold license details in case of validation success - strErr (Optional)
- Type: SystemString
Optional ref string containing validation error details.
Return Value
Type:
BooleanTrue if developer license is valid
Remarks This function WILL NOT avoid demo message. To remove TLL demo message use DeveloperLicenseContent property
See Also