ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Workflow.Models.JobModels Namespace / Job Class / Save Method
Example

In This Topic
    Save Method (Job)
    In This Topic
    Saves the job
    Syntax
    public void Save()
    Public Sub Save() 
    Example
    How to access job info and change it
    // You can change many of the exposed properties of a job and then save them
    var wfCon = await WorkflowModule.ConnectAsync();
    var jobManager = wfCon.GetManager<JobsManager>();
    var job = jobManager.GetJob(jobID);
    job.Description = "This is a test";
    job.Save();
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also