FaceLicense.getApplicationHardwareCode Method¶
Module: FaceLicense
Definition¶
Build an application hardware code.
@staticmethod
get_application_hardware_code(application_name: str, certificate: str) -> str
Parameters
application_namestrin The application name.certificatestrin The certificate.
Returns
strThe application hardware code.
Exceptions
An error has occurred during Face Library execution.
static String getApplicationHardwareCode(String? applicationName, String? certificate)
Parameters
applicationNameStringin The application name.certificateStringin The certificate.
Returns
StringThe application hardware code.
Exceptions
An error has occurred during Face Library execution.
public static string GetApplicationHardwareCode(string applicationName, string certificate)
Parameters
applicationNamestringin The application name.certificatestringin The certificate.
Returns
stringThe application hardware code.
Exceptions
An error has occurred during Face Library execution.
public static String getApplicationHardwareCode(String applicationName, String certificate) throws FaceException
Parameters
applicationNameStringin The application name.certificateStringin The certificate.
Returns
StringThe application hardware code.
Exceptions
An error has occurred during Face Library execution.
public static func getApplicationHardwareCode(applicationName: String, certificate: String) throws -> String
Parameters
applicationNameStringin The application name.certificateStringin The certificate.
Returns
StringThe application hardware code.
Exceptions
An error has occurred during Face Library execution.
int id3FaceLicense_GetApplicationHardwareCode (
const char * applicationName,
const char * certificate,
char * code,
int * codeSize)
Parameters
applicationNameconst char *in The application name.certificateconst char *in The certificate.codechar *out The application hardware code.codeSizeint *in Size of the ‘code’ buffer. Receives the minimum required buffer size to hold the ‘code’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘code’ (excluding terminating NULL character).
Returns