Esempio n. 1
0
 public override Task <VideosResponse> GetVideos(int offset)
 {
     return(_vidMeClient.GetUserVideosAsync(User.UserId, offset));
 }
Esempio n. 2
0
 public override Task <VideosResponse> GetVideos(int offset)
 {
     return(AuthenticationService.Current.IsLoggedIn
         ? _vidMeClient.GetUserVideosAsync(AuthenticationService.Current.LoggedInUserId, offset)
         : _vidMeClient.GetAnonymousVideosAsync());
 }