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

Name

Type

Description

count

int

Gets the number of elements contained in the list

operator [int index]

LogItem

Gets or sets the element at the specified index in the list.

Iteration

This class supports iteration in Dart, C#, Java and Python.

Methods

Name

Description

exportToHtml

Exports a representation of the log, in HTML format.

exportToJson

Exports a representation of the log, in JSON format.

get

Gets an item of the Log object.

getCount

Gets the number of elements in the Log object.