Firebase REST API wrapper for the .NET & Xamarin.
Changes are sent to all subscribed clients automatically, so you can update your clients in realtime from the backend.
2.0
- Use Microsoft HTTP Client Libraries instead of RestSharp
 - FireSharp is now Portable Library
 - Supports Streaming from the REST API
 - It is fully asynchronous and designed to be non-blocking
 
IMPORTANT : v1 docs moved here.
####Installation (NuGet)
//**Install v2**
Install-Package FireSharp
//**Install v1**
Install-Package FireSharp -Version 1.1.0FirebaseClient uses Newtonsoft.Json by default.
  IFirebaseConfig config = new FirebaseConfig
  {
     AuthSecret = "your_firebase_secret",
     BasePath = "https://yourfirebase.firebaseio.com/"
  };IFirebaseClient  client = new FirebaseClient(config);So far, supported methods are :
####Set
var todo = new Todo {
                name = "Execute SET",
                priority = 2
            };
SetResponse response = await _client.SetAsync("todos/set", todo);
Todo result = response.ResultAs<Todo>(); //The response will contain the data written####Push
 var todo = new Todo {
                name = "Execute PUSH",
                priority = 2
            };
PushResponse response =await  _client.PushAsync("todos/push", todo);
response.Result.Name //The result will contain the child name of the new data that was added####Get
 FirebaseResponse response = await _client.GetAsync("todos/set");
 Todo todo=response.ResultAs<Todo>(); //The response will contain the data being retreived####Update
var todo = new Todo {
                name = "Execute UPDATE!",
                priority = 1
            };
FirebaseResponse response =await  _client.UpdateAsync("todos/set", todo);
Todo todo = response.ResultAs<Todo>(); //The response will contain the data written####Delete
DeleteResponse response =await  _client.DeleteAsync("todos"); //Deletes todos collection
response.Success; //Delete success flag####Listen Streaming from the REST API
await _client.OnAsync("chat", (sender, args) => {
       System.Console.WriteLine(args.Data);
});More information about Firebase and the Firebase API is available at the official website.
Code and documentation are available according to the MIT License (see LICENSE).