HologramAuthenticationResultList Class¶
Namespace: id3.Document
Definition¶
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 |
---|---|---|
int |
Gets the number of elements contained in the list |
|
operator [int index] |
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 |
---|---|
Adds an item to the HologramAuthenticationResultList object. |
|
Clears the HologramAuthenticationResultList object. |
|
Clones the HologramAuthenticationResultList object. |
|
Gets an item of the HologramAuthenticationResultList object. |
|
Gets the number of elements in the HologramAuthenticationResultList object. |
|
Removes an element of the HologramAuthenticationResultList object. |
|
HologramAuthenticationResultList object. |
|
Sets an item of the HologramAuthenticationResultList object. |