Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、毎秒ポーリングしているURL「http://test.com/data.xml」にXMLドキュメントがあります。
このXMLソースのプーリングをIObservable<XDocument>に変えたいと思います
これはあなたのために働きますか?
Observable .Interval(TimeSpan.FromSeconds(1.0)) .Select(_ => XDocument.Load("http://test.com/data.xml"));