Log Class¶
Namespace: id3.Bioseal
Definition¶
Represents the log.
class Log
class Log implements Finalizable
public partial class Log
public class Log implements AutoCloseable, Serializable
public class Log
typedef struct id3BiosealLog *ID3_BIOSEAL_LOG;
Usage¶
logInstance = id3bioseal.Log()
Explicit destruction
# ...
del logInstance
final logInstance = sdk.Log();
// ...
Explicit destruction
// ...
logInstance.dispose()
using (var logInstance = new Log())
{
// ...
}
Explicit destruction
var logInstance = new Log()
// ...
logInstance.Dispose()
try (Log logInstance = new Log()) {
// ...
}
Explicit destruction
Log logInstance = new Log();
// ...
logInstance.close();
private var logInstance: Log? = nil
logInstance = try Log()
ID3_BIOSEAL_LOG hLog{};
int err = id3BiosealLog_Initialize(&hLog);
if (err == ID3_SUCCESS) {
// ...
id3BiosealLog_Dispose(&hLog);
}
Properties¶
Iteration¶
This class supports iteration in Dart, C#, Java and Python.
Methods¶
Name |
Description |
---|---|
Exports a representation of the log, in HTML format. |
|
Exports a representation of the log, in JSON format. |
|
Gets an item of the Log object. |
|
Gets the number of elements in the Log object. |