0
   string RSSURL = "http://zakupki.gov.ru/tinyurl/6a6ae7ed-e77d-4572-b7ac-43856452b2f6";

        WebClient wclient = new WebClient(); //method 1
        string RSSData = wclient.DownloadString(RSSURL);
        XDocument xml = XDocument.Parse(RSSData);


        var xmlReader = XmlReader.Create(RSSURL);//method 2. Both 404

应该注意的是,资源zakupki.gov.ru非常具体,这些方法在其他渠道中效果很好。我见过的一些 nuget 库也在通过xmlReader. 也就是说,他们无法解决这个问题

4

1 回答 1

0

这个库帮助了我https://www.nuget.org/packages/CodeHollow.FeedReader/ 1234567

于 2018-07-02T06:19:23.960 回答