CaptureData.data Property¶
Module: CaptureData
Type: byte[]
Definition¶
Stores the raw bytes of captured data, accommodating any form of binary data.
This flexibility allows capture_data to be used across a variety of contexts, from audio and video streams to arbitrary sensor outputs.
int get data => getData();
set data(int value) => setData(value);
Exceptions
An error has occurred during Devices Library execution.
public byte[] data
{
get => Getdata();
set => Setdata(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public byte[] getData() throws DevicesException
public void setData(byte[] data) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesCaptureData_GetData (ID3_DEVICES_CAPTURE_DATA hCaptureData, unsigned char * data, int * dataSize)
int id3DevicesCaptureData_SetData (ID3_DEVICES_CAPTURE_DATA hCaptureData, unsigned char * data, int dataSize)
Returns