Your JSON is misformed:
{"c2array":true,"size":[2,1,1],"data":[[["https://dl.dropboxusercontent.com/u/24624228/Fonction1/b1.jpg"]],[["This is text"]]]}
and arrays are 0-based, so your indexing should be .At(0) and .At(1) (you don't need to specify all dimensions for a one-dimensional array).