You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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.
The text was updated successfully, but these errors were encountered: