示例#1
0
 public VideosPostView()
 {
     this.guid             = "";
     this.index            = 0;
     this.summary          = null;
     this.sourceTypeHelper = new QuerySourceTypes();
 }
示例#2
0
 public VideosFeatured(int numFeatured, string vidSummaryLabel)
 {
     this.featuredVids     = new List <VideoSummaryData>();
     this.dataState        = DataState.NotLoaded;
     this.numFeatured      = numFeatured;
     this.vidSummaryLabel  = vidSummaryLabel;
     this.sourceTypeHelper = new QuerySourceTypes();
 }
示例#3
0
 public VideosSearch(int numShowing, string vidSummaryLabel)
 {
     this.foundVids        = new List <VideoSummaryData>();
     this.filters          = new List <VideosFilterChoice>();
     this.dataState        = DataState.NotLoaded;
     this.vidSummaryLabel  = vidSummaryLabel;
     this.searchTags       = new Dictionary <string, string>();
     this.searchKeywords   = "";
     this.ageLimitInDays   = -1;
     this.sourceTypeHelper = new QuerySourceTypes();
 }
示例#4
0
 public VideoSummary(string videoId, string uiName, VideoSummaryStyle style, ScreenBase parentScreen)
 {
     this.videoId          = videoId;
     this.uiName           = uiName;
     this.style            = style;
     this.parentScreen     = parentScreen;
     this.summaryDisplay   = null;
     this.summaryData      = null;
     this.cleanedUp        = false;
     this.thumbSize        = ThumbnailSize.SMALL;
     this.sourceTypeHelper = new QuerySourceTypes();
 }