I am trying to write an async operation using C# and .net 4.5/4.6, and am trying to use Func.BeginInvoke()
Here's what MSDN's BeginInvoke page says:
public virtual IAsyncResult BeginInvoke(
AsyncCallback callback,
Object object
)
Unfortunatly there's no information on what the second parameter (object) is, and the primary MSDN Async Tutorial Page shows:
// Initiate the asychronous call.
IAsyncResult result = caller.BeginInvoke(3000,
out threadId, null, null);
which isn't even a supported function definition!
Looks like the .net documentation has gotten substantially worse since last time I looked at it.
Help would be appreciated!