Skip to content

Firebase Db/Auth/ Storage Library for .Net Winform developers

Notifications You must be signed in to change notification settings

KimTooFlex/Bunifirebase

Repository files navigation

Bunifirebase

Firebase Db/Auth/ Storage Library for .Net Winform users

#Initialize Firebase - Paste the web config object

   Firebase.initialize(@" {
                                   apiKey: 'AIzaSyBmhPr2YWgQEq40nw4ut4598li1d1aaxM',
                                   authDomain: 'myapp-7ec0a.firebaseapp.com',
                                   databaseURL: 'https://reactapp-7ec0a.firebaseio.com',
                                   projectId: 'myapp-7ec0a',
                                   storageBucket: 'myapp-7ec0a.appspot.com',
                                   messagingSenderId: '159614956476'
                                 }", this);
                                 ```
#root reference
```csharp
 root = Firebase.database();

#reference and events

   name = root.child("name");
            name.onValue += Name_onValue;

#sample event

 private void Name_onValue(object sender, EventArgs e)
       {
            txtuser.Text = ((firebaseRef)sender).Value;
       }

About

Firebase Db/Auth/ Storage Library for .Net Winform developers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published