FaceLicense.getModuleName Method¶
Module: FaceLicense
Definition¶
Retrieves the name of the specified license module.
@staticmethod
get_module_name(index: int) -> str
Parameters
index
intin Index of the module, starting from 0.
Returns
str
The license module name.
Exceptions
An error has occurred during Face Library execution.
static String getModuleName(int index)
Parameters
index
intin Index of the module, starting from 0.
Returns
String
The license module name.
Exceptions
An error has occurred during Face Library execution.
public static string GetModuleName(int index)
Parameters
index
intin Index of the module, starting from 0.
Returns
string
The license module name.
Exceptions
An error has occurred during Face Library execution.
public static String getModuleName(int index) throws FaceException
Parameters
index
intin Index of the module, starting from 0.
Returns
String
The license module name.
Exceptions
An error has occurred during Face Library execution.
public static func getModuleName(index: Int32) throws -> String
Parameters
index
Int32in Index of the module, starting from 0.
Returns
String
The license module name.
Exceptions
An error has occurred during Face Library execution.
int id3FaceLicense_GetModuleName (
int index,
char * name,
int * nameSize)
Parameters
index
intin Index of the module, starting from 0.name
char *out The license module name.nameSize
int *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