AtomTester.RecoView.RecoView C# (CSharp) Метод

RecoView() публичный Метод

public RecoView ( Uri recoLink ) : System
recoLink System.Uri
Результат System
        public RecoView(Uri recoLink)
        {
            InitializeComponent();
            SyndicationFeed reco = RestUtils.getFeedByUri(recoLink);
                //you have to rerouting the url if you want to have img and css like in the Browser;
            recoWebBrowser.DocumentText = ((TextSyndicationContent)reco.Items.First().Content).Text;
        }