views:

58

answers:

1

I am working ti old F# code from expert f#. However, the example doesn't build anymore. The following two calls don't seem to exist anymore.

semaphore.AsyncWaitOne(?millisecondsTimeout=timeout) 

and

reader.ReadToEndAsync()

Does anyone know what these have been replaced with or if I am just missing a reference?

+2  A: 

It's now called Async.AwaitWaitHandle.

AsyncReadToEnd is in the F# PowerPack.

Brian