API reference

IDataUploadHandler Interface

An interface for uploading chunks of data

Methods

Write ( buffer , offset , length )
Writes data to an upload stream.
Signature
void Meta.WitAi.Interfaces.IDataUploadHandler.Write(byte[] buffer, int offset, int length)
Parameters
buffer: byte []  The full data to be written
offset: int  The starting offset to be written from
length: int  The total number of bytes to be written
Returns
void