Beispiel #1
0
 /// <summary>
 /// Gets a list of channels of the user with the specified <paramref name="username"/>.
 /// </summary>
 /// <param name="username">The username of the parent user.</param>
 /// <returns>An instance of <see cref="VimeoGetVideosResponse"/> representing the response.</returns>
 public VimeoGetVideosResponse GetVideos(string username)
 {
     return(VimeoGetVideosResponse.ParseResponse(Raw.GetVideos(username)));
 }
Beispiel #2
0
 /// <summary>
 /// Gets a list of channels of the user with the specified <paramref name="userId"/>.
 /// </summary>
 /// <param name="userId">The ID of the parent user.</param>
 /// <param name="page">The page to be returned.</param>
 /// <param name="perPage">The maximum amount of videos to be returned per page.</param>
 /// <returns>An instance of <see cref="VimeoGetVideosResponse"/> representing the response.</returns>
 public VimeoGetVideosResponse GetVideos(long userId, int page, int perPage)
 {
     return(VimeoGetVideosResponse.ParseResponse(Raw.GetVideos(userId, page, perPage)));
 }
Beispiel #3
0
 /// <summary>
 /// Gets a list of videos uploaded by the authenticated user.
 /// </summary>
 /// <returns>An instance of <see cref="VimeoGetVideosResponse"/> representing the response.</returns>
 public VimeoGetVideosResponse GetVideos()
 {
     return(VimeoGetVideosResponse.ParseResponse(Raw.GetVideos()));
 }
Beispiel #4
0
 /// <summary>
 /// Gets a list of videos uploaded by the user with the specified <paramref name="userId"/>
 /// </summary>
 /// <param name="userId">The ID of the user.</param>
 /// <returns>An instance of <see cref="VimeoGetVideosResponse"/> representing the response.</returns>
 public VimeoGetVideosResponse GetVideos(long userId)
 {
     return(VimeoGetVideosResponse.ParseResponse(Raw.GetVideos(userId)));
 }
Beispiel #5
0
 /// <summary>
 /// Gets a list of videos of the user matching the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for request to the API.</param>
 /// <returns>An instance of <see cref="VimeoGetVideosResponse"/> representing the response.</returns>
 public VimeoGetVideosResponse GetVideos(VimeoGetVideosOptions options)
 {
     return(VimeoGetVideosResponse.ParseResponse(Raw.GetVideos(options)));
 }