step-up-labs / firebase-storage-dotnet

C# library for Firebase Storage
MIT License
140 stars 35 forks source link

Multiple Users editing file Concurrently on Firebase Storage #53

Open vgad03 opened 1 year ago

vgad03 commented 1 year ago

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.