Field Class¶
Namespace: id3.Bioseal
Definition¶
class Field
class Field implements Finalizable
public partial class Field
public class Field implements AutoCloseable, Serializable
public class Field
typedef struct id3BiosealField *ID3_BIOSEAL_FIELD;
Usage¶
fieldInstance = id3bioseal.Field()
Explicit destruction
# ...
del fieldInstance
final fieldInstance = sdk.Field();
// ...
Explicit destruction
// ...
fieldInstance.dispose()
using (var fieldInstance = new Field())
{
// ...
}
Explicit destruction
var fieldInstance = new Field()
// ...
fieldInstance.Dispose()
try (Field fieldInstance = new Field()) {
// ...
}
Explicit destruction
Field fieldInstance = new Field();
// ...
fieldInstance.close();
private var fieldInstance: Field? = nil
fieldInstance = try Field()
ID3_BIOSEAL_FIELD hField{};
int err = id3BiosealField_Initialize(&hField);
if (err == ID3_SUCCESS) {
// ...
id3BiosealField_Dispose(&hField);
}
Properties¶
Name |
Type |
Description |
---|---|---|
int |
Gets the number of elements contained in the dict |
|
bool |
A value indicating whether the field (or one of its child fields) contains biometric data. |
|
The field extension type. |
||
The field extension. |
||
The field type. |
||
bool |
A value indicating whether if the field is null. |
|
Gets a string list containing the keys in the dict. |
||
string |
The field name. |
|
byte[] |
The data as a binary array. |
|
bool |
The field value as a boolean. |
|
bool[] |
The field value as an array of booleans. |
|
The field value as a date. |
||
The field value as a date/time. |
||
The field value as an array of dates. |
||
float |
The field value as a float. |
|
float[] |
The field value as an array of floats. |
|
long |
The field value as a 64-bit integer. |
|
long[] |
The field value as an array of 64-bit integers. |
|
string |
The field value as a string. |
|
The field value as an array of strings. |
||
The field value as a time. |
||
long |
The field value as a timestamp (without timezone computation). |
|
long[] |
The field value as an array of timestamp. |
|
The visibility condition. |
||
operator [string key] |
Gets or sets the element for the key in the dict. |
Iteration¶
This class supports iteration in Dart, C#, Java and Python.
The iteration is done on keys
Methods¶
Name |
Description |
---|---|
Returns a value indicating whether the field (or one of its child fields) contains biometric data of the specified type and/or format. |
|
Returns a value indicating whether the field (or one of its child fields) contains an extension of the specified type. |
|
Returns a value indicating whether the field (or one of its child fields) contains an extension with specified name. |
|
Determines whether the Fieldobject contains the specified key. |
|
Gets an item of the Field object. |
|
Gets the binary data at the specified index. |
|
Gets the number of elements in the Field object. |
|
Retrieves the localized label based on the provided language code. |
|
Retrieves the localized value based on the provided language code. |
|
Gets the object at the specified index. |
|
Set the time zone offset in seconds. |