ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Workflow.Models.JobModels Namespace / Job Class / Description Property
Example

In This Topic
    Description Property (Job)
    In This Topic
    Gets and sets the description of the job
    Syntax
    public string Description {get; set;}
    Public Property Description As String
    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