Kinetica C# API
Version 7.1.10.0
|
A set of parameters for Kinetica.downloadFiles(IList{string},IList{long},IList{long},IDictionary{string, string}). More...
Classes | |
struct | Options |
Optional parameters. More... | |
Public Member Functions | |
DownloadFilesRequest () | |
Constructs a DownloadFilesRequest object with default parameters. More... | |
DownloadFilesRequest (IList< string > file_names, IList< long > read_offsets, IList< long > read_lengths, IDictionary< string, string > options=null) | |
Constructs a DownloadFilesRequest object with the specified parameters. More... | |
![]() | |
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... | |
Properties | |
IList< string > | file_names [get, set] |
An array of the file names to download from KiFS. More... | |
IList< long > | read_offsets = new List<string>() [get, set] |
An array of starting byte offsets from which to read each respective file in . More... | |
IList< long > | read_lengths = new List<long>() [get, set] |
Array of number of bytes to read from each respective file in . More... | |
IDictionary< string, string > | options = new List<long>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static RecordSchema | SchemaFromType (System.Type t, KineticaType ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.downloadFiles(IList{string},IList{long},IList{long},IDictionary{string, string}).
Downloads one or more files from KiFS.
Definition at line 20 of file DownloadFiles.cs.
|
inline |
Constructs a DownloadFilesRequest object with default parameters.
Definition at line 148 of file DownloadFiles.cs.
|
inline |
Constructs a DownloadFilesRequest object with the specified parameters.
file_names | An array of the file names to download from KiFS. File paths may contain wildcard characters after the KiFS directory delimeter. Accepted wildcard characters are asterisk (*) to represent any string of zero or more characters, and question mark (?) to indicate a single character. |
read_offsets | An array of starting byte offsets from which to read each respective file in . Must either be empty or the same length as . If empty, files are downloaded in their entirety. If not empty, must also not be empty. |
read_lengths | Array of number of bytes to read from each respective file in . Must either be empty or the same length as . If empty, files are downloaded in their entirety. If not empty, must also not be empty. |
options | Optional parameters.
|
Definition at line 204 of file DownloadFiles.cs.
|
getset |
An array of the file names to download from KiFS.
File paths may contain wildcard characters after the KiFS directory delimeter.
Accepted wildcard characters are asterisk (*) to represent any string of zero or more characters, and question mark (?) to indicate a single character.
Definition at line 95 of file DownloadFiles.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 143 of file DownloadFiles.cs.
|
getset |
Array of number of bytes to read from each respective file in .
Must either be empty or the same length as . If empty, files are downloaded in their entirety. If not empty, must also not be empty.
Definition at line 113 of file DownloadFiles.cs.
|
getset |
An array of starting byte offsets from which to read each respective file in .
Must either be empty or the same length as . If empty, files are downloaded in their entirety. If not empty, must also not be empty.
Definition at line 104 of file DownloadFiles.cs.