/// A List of the stored byte arrays received by the ControllerPlugin. Set the number or records stored with <see cref="SetDataStorageSize"/>.
    public List <byte[]> GetRawData()
    {
        if (_controllerPlugin == null)
        {
            return(null);
        }

        return(_controllerPlugin.GetRawData());
    }