Esempio n. 1
0
        private async Task GetChannel(string channelId)
        {
            try
            {
                var response = await _vidMeClient.GetChannelAsync(channelId);

                if (response != null)
                {
                    if (Channel == null)
                    {
                        Channel = new ChannelItemViewModel(response.Channel);
                    }
                    else
                    {
                        Channel.Channel = response.Channel;
                    }

                    await LoadChannelVideos();
                }
            }
            catch (Exception ex)
            {
            }
        }