The Tuple type exposes the following members.
Methods
Name | Description | |
---|---|---|
Clear |
Remove all the fields in the Tuple
| |
Clone |
Return cloned tuple
| |
Create()()()() |
Create a new empty Tuple instance
| |
Create(Int32) |
Create a new empty Tuple instance with a pre-defined number of columns
| |
Deserialize |
Deserialize the serialized version of tuple.
| |
Equals |
Determines whether the specified Object is equal to this instance.
(Overrides Object..::..Equals(Object).) | |
Exists |
Given a field name, returns whether the field exists (is not null) or not.
| |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
Get |
Convenience function: given a name, returns the value as Object stored in the field with that name.
| |
GetBlob |
Given a name, returns the blob value stored in the field with that name.
| |
GetBoolean |
Given a name, returns the boolean value stored in the field with that name.
| |
GetChar |
Given a name, returns the char value stored in the field with that name.
| |
GetDateTime |
Given a name, returns the datetime value stored in the field with that name.
| |
GetDouble |
Given a name, returns the double value stored in the field with that name.
| |
GetFieldType |
Return the type of the field given a name.
| |
GetFloat |
Given a name, returns the float value stored in the field with that name.
| |
GetHashCode |
Returns a hash code for this instance.
(Overrides Object..::..GetHashCode()()()().) | |
GetInt |
Given a name, returns the int value stored in the field with that name.
| |
GetLong |
Given a name, returns the long value stored in the field with that name.
| |
GetShort |
Given a name, returns the short value stored in the field with that name.
| |
GetString |
Given a name, returns the string value stored in the field with that name.
| |
GetType | Gets the type of the current instance. (Inherited from Object.) | |
IsNull |
Given a field name, returns whether the field is null (does not exist) or not.
| |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Put(String, Boolean) |
Given a name, stores the bool value in the field with that name.
| |
Put(String, array<Byte>[]()[][]) |
Given a name, stores the byte array value in the field with that name.
| |
Put(String, Char) |
Given a name, stores the char value in the field with that name.
| |
Put(String, Double) |
Given a name, stores the double value in the field with that name.
| |
Put(String, Int16) |
Given a name, stores the short value in the field with that name.
| |
Put(String, Int32) |
Given a name, stores the int value in the field with that name.
| |
Put(String, Int64) |
Given a name, stores the long value in the field with that name.
| |
Put(String, Nullable<(Of <<'(DateTime>)>>)) |
Given a name, stores the datetime value in the field with that name.
| |
Put(String, Single) |
Given a name, stores the float value in the field with that name.
| |
Put(String, String) |
Given a name, stores the string value in the field with that name.
| |
PutAll |
Put a collection of fields into the tuple. Merge the fields of the provided incoming tuple into the
current Tuple. If the field name of the incoming tuple matches the field inside the current Tuple,
it overwrites the existing value.
| |
PutBlob |
Given a name, stores the byte array value in the field with that name.
| |
PutBoolean |
Given a name, stores the bool value in the field with that name.
| |
PutChar |
Given a name, stores the char value in the field with that name.
| |
PutDateTime |
Given a name, stores the datetime value in the field with that name.
| |
PutDouble |
Given a name, stores the double value in the field with that name.
| |
PutFloat |
Given a name, stores the float value in the field with that name.
| |
PutInt |
Given a name, stores the int value in the field with that name.
| |
PutLong |
Given a name, stores the long value in the field with that name.
| |
PutShort |
Given a name, stores the short value in the field with that name.
| |
PutString |
Given a name, stores the string value in the field with that name.
| |
Remove |
Remove the value corresponding to the field name from Tuple.
| |
Serialize |
Serializes the tuple.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Properties
Name | Description | |
---|---|---|
FieldNames |
Return a collection of names of fields inside the Tuple. Field names are not necessarily in the same
order as they are put.
| |
Size |
Return the number of fields in the tuple.
|