Parameters
- map
- The map object to retrieve job information for.
Return Value
The properties of a job associated with the map. If no job is associated with the map, then null is returned.
// Get a job associated with the map var wfCon = await WorkflowModule.ConnectAsync(); var jobManager = wfCon.GetManager<JobsManager>(); var job = jobManager.GetJob(map); if (job != null) { // Job found, do something with the job var jobId = job.ID; }
Target Platforms: Windows 11, Windows 10