FaceLicense.getModuleName Method¶
Module: FaceLicense
Definition¶
Retrieves the name of the specified license module.
@staticmethod
get_module_name(index: int) -> str
Parameters
indexintin Index of the module, starting from 0.
Returns
strThe license module name.
Exceptions
An error has occurred during Face Library execution.
static String getModuleName(int index)
Parameters
indexintin Index of the module, starting from 0.
Returns
StringThe license module name.
Exceptions
An error has occurred during Face Library execution.
public static string GetModuleName(int index)
Parameters
indexintin Index of the module, starting from 0.
Returns
stringThe license module name.
Exceptions
An error has occurred during Face Library execution.
public static String getModuleName(int index) throws FaceException
Parameters
indexintin Index of the module, starting from 0.
Returns
StringThe license module name.
Exceptions
An error has occurred during Face Library execution.
public static func getModuleName(index: Int32) throws -> String
Parameters
indexInt32in Index of the module, starting from 0.
Returns
StringThe license module name.
Exceptions
An error has occurred during Face Library execution.
int id3FaceLicense_GetModuleName (
int index,
char * name,
int * nameSize)
Parameters
indexintin Index of the module, starting from 0.namechar *out The license module name.nameSizeint *in Size of the ‘name’ buffer. Receives the minimum required buffer size to hold the ‘name’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘name’ (excluding terminating NULL character).
Returns