Support paging when searching for files by tags in azure blob storage
Add ABSOptionalParameters Parameter to FindBlobsByTags procedure as overload in ABSBlobClient to support paging. Currently its not possible to receive more than 5000 files with a given tag.
Allow listing files/directories only in azure blob storage.
Add showonly procedure to ABSOptionalParameters to allow filtering for deleted/files/directories (implement as enum). This Parameter could be used when calling ListBlobs.
Allow setting SASToken as SecretText in Storage Service Authorization
Currently you can set SASToken only as Text. Adding an overload with a SecretText parameter would allow to secure the value from isolated storage to Auth Codeunit.
Allow Attributes with more than 250 Chars in XML Buffer Writer
When using the "XML Buffer Writer" Codeunit it throws an custom error when we try to import an xml with an atribute value > 250 chars.
by using the setValue Procedure instead of the Table Field directly this could be solved and make the XML Buffer Writer usable for usecases with long att...