FingerTemplateRecord Class

Namespace: id3.Finger

Definition

Represents a finger template record.
class FingerTemplateRecord
class FingerTemplateRecord implements Finalizable
public partial class FingerTemplateRecord
public class FingerTemplateRecord implements AutoCloseable, Serializable
public class FingerTemplateRecord
typedef struct id3FingerTemplateRecord *ID3_FINGER_TEMPLATE_RECORD;

Usage

fingerTemplateRecordInstance = FingerTemplateRecord()
# ...

Explicit destruction

# ...
del fingerTemplateRecordInstance
final fingerTemplateRecordInstance = sdk.FingerTemplateRecord();
// ...

Explicit destruction

// ...
fingerTemplateRecordInstance.dispose()
using (var fingerTemplateRecordInstance = new FingerTemplateRecord())
{
   // ...
}

Explicit destruction

var fingerTemplateRecordInstance = new FingerTemplateRecord()
// ...
fingerTemplateRecordInstance.Dispose()
try (FingerTemplateRecord fingerTemplateRecordInstance = new FingerTemplateRecord()) {
// ...
}

Explicit destruction

FingerTemplateRecord fingerTemplateRecordInstance = new FingerTemplateRecord();
// ...
fingerTemplateRecordInstance.close();
private var fingerTemplateRecordInstance: FingerTemplateRecord? = nil
fingerTemplateRecordInstance = try FingerTemplateRecord()
ID3_FINGER_TEMPLATE_RECORD hFingerTemplateRecord{};
int err = id3FingerTemplateRecord_Initialize(&hFingerTemplateRecord);
if (err == ID3_SUCCESS) {
    // ...
    id3FingerTemplateRecord_Dispose(&hFingerTemplateRecord);
}

Properties

Name

Type

Description

count

int

Gets the number of elements contained in the list

operator [int index]

FingerTemplate

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

Iteration

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

Static Methods

Name

Description

fromBuffer

Imports the finger template record object from a buffer.

fromFile

Imports the finger template record object from a file.

Methods

Name

Description

add

Adds an item to the FingerTemplateRecord object.

clear

Clears the FingerTemplateRecord object.

clone

Clones the FingerTemplateRecord object.

get

Gets an item of the FingerTemplateRecord object.

getCount

Gets the number of elements in the FingerTemplateRecord object.

removeAt

Removes an element of the FingerTemplateRecord object.

resize

FingerTemplateRecord object.

set

Sets an item of the FingerTemplateRecord object.

toBuffer

Exports the finger template object to a buffer.

toFile

Exports the finger template record object to a file.