GetUserVideos() public method

public GetUserVideos ( string email, string Interface, string order, int limit, int page ) : Task
email string
Interface string
order string
limit int
page int
return Task
        private async void BtGetUserVideosClick(object sender, RoutedEventArgs e)
        {
            App app = Application.Current as App;

            if (app == null)
                return;

            var client = new VideosServiceClient(app.EsbUsername, app.EsbPassword, app.EsbAccessKey);
            Video[] videos = await client.GetUserVideos(null, null, null, 50, 1);

            StringBuilder sb = new StringBuilder();
            foreach (Video v in videos)
            {
                sb.AppendLine(String.Format("Randname: {0}\nTitle: {1}\nSynopse: {2}\nURI: {3}",
                                            v.Randname, v.Title, v.Synopse, v.URL));
            }

            this.tblock_Result.Text = sb.ToString();
        }