コード例 #1
0
ファイル: SyncNode.cs プロジェクト: tana/Mondeto
    public async Task <(string path, string mimeType)> GetBlobTempFile(BlobHandle handle)
    {
        await ReadBlob(handle);

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