Ejemplo n.º 1
0
        private void ParseYou(string text)
        {
            string id;

            if (CommonExtensions.IsLinkYoutube(text, out id))
            {
                IsYouTube      = true;
                youId          = id;
                SelectedOption = DownOptions.Select(x => x.Value).First();
            }
            else
            {
                IsYouTube = false;
            }
        }