Rocket.Chat.Net.Driver.RocketChatDriver.GetRoomInfoCollection C# (CSharp) Method

GetRoomInfoCollection() private method

private GetRoomInfoCollection ( ) : TypedStreamCollection
return TypedStreamCollection
        public TypedStreamCollection<RoomInfo> GetRoomInfoCollection()
        {
            IStreamCollection value;
            var results = _collectionDatabase.TryGetCollection("rocketchat_room", out value);
            if (!results)
            {
                return null;
            }

            var typedCollection = new TypedStreamCollection<RoomInfo>(value);
            return typedCollection;
        }