Log.exportToHtml Method

Module: Log

Definition

Exports a representation of the log, in HTML format.

export_to_html(self, debug: bool) -> str

Parameters

debug bool
in Indicates whether debug information is added to the log.

Returns

str
The result.

Exceptions

An error has occurred during Bioseal Library execution.
String exportToHtml(bool debug)

Parameters

debug bool
in Indicates whether debug information is added to the log.

Returns

String
The result.

Exceptions

An error has occurred during Bioseal Library execution.
public string ExportToHtml(bool debug)

Parameters

debug bool
in Indicates whether debug information is added to the log.

Returns

string
The result.

Exceptions

An error has occurred during Bioseal Library execution.
public String exportToHtml(boolean debug) throws BiosealException

Parameters

debug boolean
in Indicates whether debug information is added to the log.

Returns

String
The result.

Exceptions

An error has occurred during Bioseal Library execution.
public func exportToHtml(debug: Bool) throws -> String

Parameters

debug Bool
in Indicates whether debug information is added to the log.

Returns

String
The result.

Exceptions

An error has occurred during Bioseal Library execution.
int id3BiosealLog_ExportToHtml (
    ID3_BIOSEAL_LOG hLog,
    bool debug,
    char * result,
    int * resultSize)

Parameters

in Handle to the Log object.

debug bool
in Indicates whether debug information is added to the log.

result char *
out The result.

resultSize int *
in Size of the ‘result’ buffer. Receives the minimum required buffer size to hold the ‘result’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘result’ (excluding terminating NULL character).

Returns

int
An error code.
See id3BiosealError file for the list of possible error codes.