コード例 #1
0
 /// <summary>
 /// Button click event that fills the datagridview with criteria based in the comboboxes
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void ApplyButton_Click(object sender, EventArgs e)
 {
     if (_selectedStreamer != null)
     {
         NextButton.Visible = true;
         FillPastStreamsDataGridView(APICalls.GetStreams(_selectedStreamer.id, VideoTypeComboBox.Text, CreatedPeriodComboBox.Text, SortByComboBox.Text, int.Parse(ItemsPerPageComboBox.Text)));
     }
 }
コード例 #2
0
 private VODMasterObject GetPastStreams(string beforeOrAfter, string pagination, string previousStreamType)
 {
     return(APICalls.GetStreams(_selectedStreamer.id, beforeOrAfter, pagination, "highlight"));
 }
コード例 #3
0
 private VODMasterObject GetPastStreams()
 {
     return(APICalls.GetStreams(_selectedStreamer.id, "highlight"));
 }
コード例 #4
0
 private VODMasterObject getPastStreams()
 {
     return(APICalls.GetStreams(StreamerInformation.id, "highlight"));
 }