For a Microsoft.TeamFoundation.VersionControl.Client.Workspace object, when calling the Get() method, is there a way to know when the operation is complete? I see there is a callback param in the Get() method, but it seems like this is fired once the files have been identified, but not before they're actually 'got'. More of a way to interrupt the get(). I'm looking for a callback or event to let me know the files are there.
I suppose since I know the location that the files are going, and the callback gives me a list of files that I can expect, I could do some filewatching on that folder, but I wanted to see if there was something already built in before I went that way.