summaryrefslogtreecommitdiff
path: root/FireBase/Query/IFirebaseQuery.cs
diff options
context:
space:
mode:
authorDennis Kobert <d-kobert@web.de>2019-05-19 16:03:38 +0200
committerDennis Kobert <d-kobert@web.de>2019-05-19 16:03:38 +0200
commitf89f308c525e9deebc6d2cf6416e27dfe1a299dc (patch)
tree7097ef871ead0245efda696198443eab8e443d3a /FireBase/Query/IFirebaseQuery.cs
parentf3983341be939235c1a6cd522b3bb5cc318a6d1a (diff)
Cleanup DiscoBot Project
Diffstat (limited to 'FireBase/Query/IFirebaseQuery.cs')
-rw-r--r--FireBase/Query/IFirebaseQuery.cs13
1 files changed, 5 insertions, 8 deletions
diff --git a/FireBase/Query/IFirebaseQuery.cs b/FireBase/Query/IFirebaseQuery.cs
index 2e8c671..9f6e36c 100644
--- a/FireBase/Query/IFirebaseQuery.cs
+++ b/FireBase/Query/IFirebaseQuery.cs
@@ -3,8 +3,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-
- using Firebase.Database.Streaming;
+ using Streaming;
/// <summary>
/// The FirebaseQuery interface.
@@ -14,10 +13,7 @@
/// <summary>
/// Gets the owning client of this query.
/// </summary>
- FirebaseClient Client
- {
- get;
- }
+ FirebaseClient Client { get; }
/// <summary>
/// Retrieves items which exist on the location specified by this query instance.
@@ -32,7 +28,8 @@
/// </summary>
/// <typeparam name="T"> Type of the items. </typeparam>
/// <returns> Cold observable of <see cref="FirebaseEvent{T}"/>. </returns>
- IObservable<FirebaseEvent<T>> AsObservable<T>(EventHandler<ExceptionEventArgs<FirebaseException>> exceptionHandler, string elementRoot = "");
+ IObservable<FirebaseEvent<T>> AsObservable<T>(
+ EventHandler<ExceptionEventArgs<FirebaseException>> exceptionHandler, string elementRoot = "");
/// <summary>
/// Builds the actual url of this query.
@@ -40,4 +37,4 @@
/// <returns> The <see cref="string"/>. </returns>
Task<string> BuildUrlAsync();
}
-}
+} \ No newline at end of file