mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-09 12:29:30 +00:00
23 lines
461 B
C#
23 lines
461 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace VersOne.Epub
|
|
{
|
|
public class EpubByteContentFileRef : EpubContentFileRef
|
|
{
|
|
public EpubByteContentFileRef(EpubBookRef epubBookRef)
|
|
: base(epubBookRef)
|
|
{
|
|
}
|
|
|
|
public byte[] ReadContent()
|
|
{
|
|
return ReadContentAsBytes();
|
|
}
|
|
|
|
public Task<byte[]> ReadContentAsync()
|
|
{
|
|
return ReadContentAsBytesAsync();
|
|
}
|
|
}
|
|
}
|