Hi,
When starting an asynchronous job on ArcGIS Server using Runtime SDK, I'm expecting the jobID to be available after the call to start(). It seems that I have to wait for some arbitrary amount of time before it is available. Is there a sure way to get the jobID?
var gpTask = await GeoprocessingTask.CreateAsync(new Uri(toolUrl));
...
gpJob = gpTask.CreateJob(gpParameters);
...
bool started = gpJob.Start();