step-up-labs / firebase-storage-dotnet

C# library for Firebase Storage

Repository from Github https://github.comstep-up-labs/firebase-storage-dotnetRepository from Github https://github.comstep-up-labs/firebase-storage-dotnet

Multiple Users editing file Concurrently on Firebase Storage

vgad03 opened this issue · comments

Hi, thank you so much for this Nuget, ive been using it and its very helpful!

I do have a question.

I have a situation where multiple users are editing a file on firebase storage concurrently. How is this treating with this Nuget? I am currently editing the file and then just uploading it to firebase using the following:

public async void Upload(Stream fileStream, string folder, string filename) { await firebaseStorage .Child(folder) .Child(filename) .PutAsync(fileStream); }

Thanks.