Questions tagged [fire-sharp]

32 questions
0
votes
1 answer

retrieve data from firebase real time database using firesharp library in c#

IFirebaseConfig config = new FirebaseConfig(); config.Serializer = new ServiceStackJsonSerializer(); //Register ServiceStack.Text config.Serializer = new JsonNetSerializer(); //Register Json.Net config.AuthSecret = "authsecret…
0
votes
1 answer

Using Firesharp in Xamarin.Forms to get Data from Firebase Database

I want to push and get Recipe-Data from my Firebase Database in Xamarin.Forms with the Firesharp Plugin. My Model Class is the Recipe Class: public class Recipe { public string title { get; set; } public string workTime { get; set; } …
1 2
3