Untitled
unknown
plain_text
3 years ago
431 B
14
Indexable
public async Task<string> UploadImage(Stream img, string proname, string filename)
{
try
{
var image = await App.FirebaseStorage
.Child($"Images/{proname}/{filename}")
.PutAsync(img);
return image;
}
catch (Exception ex)
{
return "false";
}
}Editor is loading...