Hi again,
I managed to make this work by replacing the asyncornous calls with Streams with IArchiveEntry.writeTo() method:
Thanks for this great Library.
I managed to make this work by replacing the asyncornous calls with Streams with IArchiveEntry.writeTo() method:
InMemoryRandomAccessStream ras = new InMemoryRandomAccessStream();
using (Stream writeBufferStream = ras.AsStreamForWrite())
{
entry.WriteTo(writeBufferStream);
}
This allows me to read individual RAR entries in my Windows Store app. I would still preferer to use the asynchronous Stream methods, so it might still be a good idea to look into it in the Library if you can.Thanks for this great Library.