示例#1
0
 /// <summary>
 /// Gets the videos of the specified channel.
 /// </summary>
 /// <param name="offset">The offset (must be 1 or higher - default is 1).</param>
 /// <param name="channelName">The name of the channel (use the authors name for their default channel).</param>
 public static YouTubeChannel GetChannel(string channelName, int offset)
 {
     return(YouTubeChannel.GetChannel(channelName, offset));
 }
示例#2
0
 /// <summary>
 /// Gets the videos of the specified channel.
 /// </summary>
 /// <param name="channelName">The name of the channel (use the authors name for their default channel).</param>
 /// <param name="offset">The offset (must be 1 or higher - default is 1).</param>
 /// <param name="maxResults">The maximum of videos per page (cannot be greater than 50).</param>
 public static YouTubeChannel GetChannel(string channelName, int offset, int maxResults)
 {
     return(YouTubeChannel.GetChannel(channelName, offset, maxResults));
 }
示例#3
0
 /// <summary>
 /// Gets the videos of the specified channel.
 /// </summary>
 /// <param name="channelName">The name of the channel (use the authors name for their default channel).</param>
 public static YouTubeChannel GetChannel(string channelName)
 {
     return(YouTubeChannel.GetChannel(channelName));
 }