You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will give you the possibility to upload 1 file.
However if you want to dynamicly upload a list of files this is currently not possible.
If however you take the generated Factory class of above code and you change ByteArrayProvider to List<ByteArrayProvider> this works as expected. So I think it should be an easy fix if we could provide a List<byte[]> file in the interface and it generates a factory with a List<ByteArrayProvider>
The text was updated successfully, but these errors were encountered:
Currently you can write code like
This will give you the possibility to upload 1 file.
However if you want to dynamicly upload a list of files this is currently not possible.
If however you take the generated Factory class of above code and you change
ByteArrayProvider
toList<ByteArrayProvider>
this works as expected. So I think it should be an easy fix if we could provide aList<byte[]>
file in the interface and it generates a factory with aList<ByteArrayProvider>
The text was updated successfully, but these errors were encountered: