The Tuple type exposes the following members.

Methods

  NameDescription
Public methodClear
Remove all the fields in the Tuple
Public methodClone
Return cloned tuple
Public methodStatic memberCreate()()()()
Create a new empty Tuple instance
Public methodStatic memberCreate(Int32)
Create a new empty Tuple instance with a pre-defined number of columns
Public methodDeserialize
Deserialize the serialized version of tuple.
Public methodEquals
Determines whether the specified Object is equal to this instance.
(Overrides Object..::..Equals(Object).)
Public methodExists
Given a field name, returns whether the field exists (is not null) or not.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGet
Convenience function: given a name, returns the value as Object stored in the field with that name.
Public methodGetBlob
Given a name, returns the blob value stored in the field with that name.
Public methodGetBoolean
Given a name, returns the boolean value stored in the field with that name.
Public methodGetChar
Given a name, returns the char value stored in the field with that name.
Public methodGetDateTime
Given a name, returns the datetime value stored in the field with that name.
Public methodGetDouble
Given a name, returns the double value stored in the field with that name.
Public methodGetFieldType
Return the type of the field given a name.
Public methodGetFloat
Given a name, returns the float value stored in the field with that name.
Public methodGetHashCode
Returns a hash code for this instance.
(Overrides Object..::..GetHashCode()()()().)
Public methodGetInt
Given a name, returns the int value stored in the field with that name.
Public methodGetLong
Given a name, returns the long value stored in the field with that name.
Public methodGetShort
Given a name, returns the short value stored in the field with that name.
Public methodGetString
Given a name, returns the string value stored in the field with that name.
Public methodGetType
Gets the type of the current instance.
(Inherited from Object.)
Public methodIsNull
Given a field name, returns whether the field is null (does not exist) or not.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodPut(String, Boolean)
Given a name, stores the bool value in the field with that name.
Public methodPut(String, array<Byte>[]()[][])
Given a name, stores the byte array value in the field with that name.
Public methodPut(String, Char)
Given a name, stores the char value in the field with that name.
Public methodPut(String, Double)
Given a name, stores the double value in the field with that name.
Public methodPut(String, Int16)
Given a name, stores the short value in the field with that name.
Public methodPut(String, Int32)
Given a name, stores the int value in the field with that name.
Public methodPut(String, Int64)
Given a name, stores the long value in the field with that name.
Public methodPut(String, Nullable<(Of <<'(DateTime>)>>))
Given a name, stores the datetime value in the field with that name.
Public methodPut(String, Single)
Given a name, stores the float value in the field with that name.
Public methodPut(String, String)
Given a name, stores the string value in the field with that name.
Public methodPutAll
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.
Public methodPutBlob
Given a name, stores the byte array value in the field with that name.
Public methodPutBoolean
Given a name, stores the bool value in the field with that name.
Public methodPutChar
Given a name, stores the char value in the field with that name.
Public methodPutDateTime
Given a name, stores the datetime value in the field with that name.
Public methodPutDouble
Given a name, stores the double value in the field with that name.
Public methodPutFloat
Given a name, stores the float value in the field with that name.
Public methodPutInt
Given a name, stores the int value in the field with that name.
Public methodPutLong
Given a name, stores the long value in the field with that name.
Public methodPutShort
Given a name, stores the short value in the field with that name.
Public methodPutString
Given a name, stores the string value in the field with that name.
Public methodRemove
Remove the value corresponding to the field name from Tuple.
Public methodSerialize
Serializes the tuple.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)

Properties

  NameDescription
Public propertyFieldNames
Return a collection of names of fields inside the Tuple. Field names are not necessarily in the same order as they are put.
Public propertySize
Return the number of fields in the tuple.

See Also