Hi, dependng on the context you want to process your sequence in, you may use for instance

1
2
3
4
5
6
7
8
9
10
11
let run url =
  let mySeq = getXmlDoc url |> Async.RunSynchronously
  for node in mySeq do
    printfn "%A" node

let asyncRun url =
  async
    { let! mySeq = getXmlDoc url 
      for node in mySeq do
        printfn "%A" node
    }

Hope this helps

By on 6/9/2009 10:54 PM ()

Thank you Julien. It helped.

By on 6/10/2009 12:18 AM ()
IntelliFactory Offices Copyright (c) 2011-2012 IntelliFactory. All rights reserved.
Home | Products | Consulting | Trainings | Blogs | Jobs | Contact Us | Terms of Use | Privacy Policy | Cookie Policy
Built with WebSharper