DevicesLibrary.getVersion Method¶
Module: DevicesLibrary
Definition¶
Retrieves the library version as a X.Y.Z formatted string.
@staticmethod
get_version() -> str
Returns
strA string that identifies the library version.
Exceptions
An error has occurred during Devices Library execution.
static String getVersion()
Returns
StringA string that identifies the library version.
Exceptions
An error has occurred during Devices Library execution.
public static string GetVersion()
Returns
stringA string that identifies the library version.
Exceptions
An error has occurred during Devices Library execution.
public static String getVersion() throws DevicesException
Returns
StringA string that identifies the library version.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesLibrary_GetVersion (
    char * libraryVersion,
    int * libraryVersionSize)
Parameters
libraryVersionchar *out A string that identifies the library version.libraryVersionSizeint *in Size of the ‘libraryVersion’ buffer. Receives the minimum required buffer size to hold the ‘libraryVersion’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘libraryVersion’ (excluding terminating NULL character).
Returns