Beispiel #1
0
		public BCQueryResult() {
			Playlists = new BCCollection<BCPlaylist>();
			Videos = new BCCollection<BCVideo>();
			PageNumber = 0;
			PageSize = 0;
			TotalCount = 0;
		}
 public BCQueryResult()
 {
     Playlists  = new BCCollection <BCPlaylist>();
     Videos     = new BCCollection <BCVideo>();
     PageNumber = 0;
     PageSize   = 0;
     TotalCount = 0;
 }
        public static string ToDelimitedString(this BCCollection <string> list, string Delimiter)
        {
            string r = "";

            foreach (string s in list)
            {
                if (r.Length > 0)
                {
                    r += Delimiter;
                }
                r += s;
            }
            return(r);
        }
 public BCPlaylist()
 {
     videos     = new BCCollection <BCVideo>();
     filterTags = new BCCollection <string>();
     videoIds   = new BCCollection <long>();
 }