HologramAuthenticationResultList Class

Namespace: id3.Document

Definition

Represents a list of hologram authentication results.
class HologramAuthenticationResultList
class HologramAuthenticationResultList implements Finalizable
public partial class HologramAuthenticationResultList
public class HologramAuthenticationResultList implements AutoCloseable, Serializable
public class HologramAuthenticationResultList
typedef struct id3DocumentHologramAuthenticationResultList *ID3_DOCUMENT_HOLOGRAM_AUTHENTICATION_RESULT_LIST;

Usage

hologramAuthenticationResultListInstance = HologramAuthenticationResultList()
# ...

Explicit destruction

# ...
del hologramAuthenticationResultListInstance
final hologramAuthenticationResultListInstance = sdk.HologramAuthenticationResultList();
// ...

Explicit destruction

// ...
hologramAuthenticationResultListInstance.dispose()
using (var hologramAuthenticationResultListInstance = new HologramAuthenticationResultList())
{
   // ...
}

Explicit destruction

var hologramAuthenticationResultListInstance = new HologramAuthenticationResultList()
// ...
hologramAuthenticationResultListInstance.Dispose()
try (HologramAuthenticationResultList hologramAuthenticationResultListInstance = new HologramAuthenticationResultList()) {
// ...
}

Explicit destruction

HologramAuthenticationResultList hologramAuthenticationResultListInstance = new HologramAuthenticationResultList();
// ...
hologramAuthenticationResultListInstance.close();
private var hologramAuthenticationResultListInstance: HologramAuthenticationResultList? = nil
hologramAuthenticationResultListInstance = try HologramAuthenticationResultList()
ID3_DOCUMENT_HOLOGRAM_AUTHENTICATION_RESULT_LIST hHologramAuthenticationResultList{};
int err = id3DocumentHologramAuthenticationResultList_Initialize(&hHologramAuthenticationResultList);
if (err == ID3_SUCCESS) {
    // ...
    id3DocumentHologramAuthenticationResultList_Dispose(&hHologramAuthenticationResultList);
}

Properties

Name

Type

Description

count

int

Gets the number of elements contained in the list

operator [int index]

HologramAuthenticationResult

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

add

Adds an item to the HologramAuthenticationResultList object.

clear

Clears the HologramAuthenticationResultList object.

clone

Clones the HologramAuthenticationResultList object.

get

Gets an item of the HologramAuthenticationResultList object.

getCount

Gets the number of elements in the HologramAuthenticationResultList object.

removeAt

Removes an element of the HologramAuthenticationResultList object.

resize

HologramAuthenticationResultList object.

set

Sets an item of the HologramAuthenticationResultList object.