Questions tagged [fire-sharp]

32 questions
0
votes
0 answers

firebase & C# connection string encryption

i am using c# windows form for desktop application. and realtime datatabase by firebase. IFirebaseConfig config = new FirebaseConfig { AuthSecret = "", BasePath = "" }; in each form i have to write this connection string,…
0
votes
0 answers

how to retrieve data from child in firebase with firesharp and asp.net core mvc

I'm trying to retrieve driver data from firebase's real-time database using firesharp library in order to complete an MVC project using the asp.net core but using this code I can't retrieve all data related to the driver always I'm missing "car…
0
votes
1 answer

How to configure a Firestore connection using FireSharp in a WinForm App

All the reference material that I find online is using FireSharp to configure a connection with Firebase's Realtime Database. Further, I cannot find the AuthSecret and BasePath for my Firestore as the current viable use suggested by Firebase is the…
mkz
  • 119
  • 1
  • 8
0
votes
1 answer

C# FireSharp | FileNotFoundException in client.get() method. How to resolve?

I'll describe my requirements, then my problem. The libraries I'm using are: using System; using FireSharp.Config; using FireSharp.Response; using FireSharp.Interfaces; I want to store two fields per record in my Firebase RTDB. One is an ID (to…
0
votes
1 answer

Can't deserialize JSON into an object with nested list

Apologies for asking a fairly common question, I have been looking all over and can't find a solution that fixes my problem. I am using Firesharp, and trying to deserialize a Json object that Firebase returns into a class with a nested list. public…
0
votes
1 answer

Firebase Cross-platform issue - .setAsync() is setting in 2 path destinations instead of just one

I am using Firesharp for my app in c# winforms. This database is also connected to my ReactJS website which deals with the same information. I have noticed that when I make .SetAsync calls to my app on the website and then log in to my Winforms app,…
Cflux
  • 1,423
  • 3
  • 19
  • 39
0
votes
1 answer

Visual Basic (vb.net) How to check if task could not be completed

I was trying to make it so when my button is clicked, it will run through a series of tasks or things to do, but i want it so when if it fails to do anything of those tasks it will (do something) - Like Use MsgBox("This Operation Could Not Be…
0
votes
1 answer

How to grab nested data in a firebase realtime database?

I've made a small website for family and friends to guess after name, gender, date of birth, etc of our next baby. I have used vue in combination with firebase's real time database. Now I want to write a console app in c# to validate all the bets…
Nilson
  • 11
  • 1
0
votes
1 answer

How do I read data from firebase using firesharp nuget package in C#?

I use the following code to connect to firebase and try to read data. The connection is successful but I am unable to read the data. It gives System.NullReferenceException:'Object reference not set to an instance of an object. namespace…
0
votes
1 answer

Using Firesharp for Windows desktop push notifications only

I want to use Firesharp in a desktop application for Windows. The application will only receive notifications from Firebase, and there will be no database interactions of any kind (Firebase Cloud Messaging / FCM is the only thing used from…
FiddlingAway
  • 1,598
  • 3
  • 14
  • 30
0
votes
1 answer

why Firebase in C# form app not realtime?

I'm trying to build an app that detects product from android and send it in real-time to the desktop application via firebase but I don't know firebase doesn't work in real-time when I get value on C# app (I mean when I change values it doesn't…
ala freestyle
  • 109
  • 10
0
votes
1 answer

I can't retrieve firebase data using firesharp library in my wpf c# application

I am trying to retrieve data from firebase. But all attributes of the object in which I am trying to store my data are null. Please help using FireSharp.Config; using FireSharp.Interfaces; using FireSharp.Response; …
0
votes
1 answer

How to add data from Firebase to DataGridView using FireSharp

I just want to retrieve data from a Firebase to DataGridView. The code I have is retrieving data already, however, it's retrieving everything to the same row instead of creating a new one. I'm a beginner in coding, so I really need help with that. I…
0
votes
0 answers

How do I check if a child exists in Firebase xamarin?

I'm using firebase for c# xamarin and I want to do for each user it will check if he has counter, and if not it will generate for him. I tried it like this: try { FirebaseResponse resp = await client.GetAsync(uid+"/counter/node"); result =…
0
votes
1 answer

I cant retrieve data from Firebase to Xamarin.Android using FireSharp

I'm using firesharp, I try to retrieve data in my mobile app but when I try it the app crashes on start before showing text. Is there any way I did something wrong? or just the firesharp isnt supposed to be for Xamarin. I did this already with a…