Kinetica C# API
Version 7.2.3.0
|
A set of results returned by Kinetica.getRecordsFromCollection. More...
Classes | |
struct | Info |
A set of string constants for the parameter info. More... | |
Properties | |
string | table_name [get, set] |
Value of table_name. More... | |
IList< string > | type_names = new List<string>() [get, set] |
The type IDs of the corresponding records in records_binary or records_json. More... | |
IList< byte[]> | records_binary = new List<byte[]>() [get, set] |
If the encoding parameter of the request was 'binary' then this list contains the binary encoded records retrieved from the table/collection. More... | |
IList< string > | records_json = new List<string>() [get, set] |
If the encoding parameter of the request was 'json', then this list contains the JSON encoded records retrieved from the table/collection. More... | |
IList< string > | record_ids = new List<string>() [get, set] |
If the 'return_record_ids' option of the request was 'true', then this list contains the internal ID for each object. More... | |
IDictionary< string, string > | info = new Dictionary<string, string>() [get, set] |
Additional information. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
![]() | |
static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of results returned by Kinetica.getRecordsFromCollection.
Definition at line 287 of file GetRecordsFromCollection.cs.
|
getset |
Additional information.
The default value is an empty Dictionary.
Definition at line 368 of file GetRecordsFromCollection.cs.
|
getset |
If the 'return_record_ids' option of the request was 'true', then this list contains the internal ID for each object.
Otherwise it will be empty.
Definition at line 342 of file GetRecordsFromCollection.cs.
|
getset |
If the encoding parameter of the request was 'binary' then this list contains the binary encoded records retrieved from the table/collection.
Otherwise, empty list.
Definition at line 330 of file GetRecordsFromCollection.cs.
|
getset |
If the encoding parameter of the request was 'json', then this list contains the JSON encoded records retrieved from the table/collection.
Otherwise, empty list.
Definition at line 336 of file GetRecordsFromCollection.cs.
|
getset |
Value of table_name.
Definition at line 316 of file GetRecordsFromCollection.cs.
|
getset |
The type IDs of the corresponding records in records_binary or records_json.
This is useful when table_name is a heterogeneous collection (collections containing tables of different types).
Definition at line 324 of file GetRecordsFromCollection.cs.