Last active
January 3, 2017 13:48
-
-
Save bezysoftware/f6391080de18056d0a2de72d0621cb6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var firebase = new FirebaseClient( | |
| "https://dinosaur-facts.firebaseio.com/", | |
| new FirebaseOptions | |
| { | |
| AuthTokenAsyncFactory = () => "token value" | |
| }); | |
| var dinos = await firebase | |
| .Child("dinosaurs") | |
| .OnceAsync<Dinosaur>(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment