BiosealLibrary.getVersion Method¶
Module: BiosealLibrary
Definition¶
Retrieves the library version as a ‘X.Y.Z’ formatted string.
@staticmethod
get_version() -> str
Returns
str
A string that identifies the library version.
Exceptions
An error has occurred during Bioseal Library execution.
static String getVersion()
Returns
String
A string that identifies the library version.
Exceptions
An error has occurred during Bioseal Library execution.
public static string GetVersion()
Returns
string
A string that identifies the library version.
Exceptions
An error has occurred during Bioseal Library execution.
public static String getVersion() throws BiosealException
Returns
String
A string that identifies the library version.
Exceptions
An error has occurred during Bioseal Library execution.
public static func getVersion() throws -> String
Returns
String
A string that identifies the library version.
Exceptions
An error has occurred during Bioseal Library execution.
int id3BiosealLibrary_GetVersion (
char * libraryVersion,
int * libraryVersionSize)
Parameters
libraryVersion
char *out A string that identifies the library version.libraryVersionSize
int *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