Files
QuickLook/QuickLook.Plugin/VersOne.Epub/RefEntities/EpubByteContentFileRef.cs
2018-07-16 09:46:52 +02:00

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();
}
}
}