namespace Firebase.Database.Offline { public enum StreamingOptions { /// /// No realtime streaming. /// None, /// /// Streaming of only new items - not the existing ones. /// LatestOnly, /// /// Streaming of all items. This will also pull all existing items on start, so be mindful about the number of items in your DB. /// When used, consider not setting the to because you would pointlessly pull everything twice. /// Everything } }