Example #1
0
    public async Task <(string path, string mimeType)> GetBlobTempFile(BlobHandle handle)
    {
        await ReadBlob(handle);

        return(BlobCache.HandleToPath(handle), BlobCache.GetMimeType(handle));
    }