adTempus API
ArcanaDevelopment.adTempus.Client Namespace / Job Class / GetJobChain Method
If specified, only jobs participating in the specified chain are returned.


In This Topic
    GetJobChain Method (Job)
    In This Topic
    Gets all jobs in the chain that contains this job.
    Syntax
    'Declaration
     
    
    Public Function GetJobChain( _
       ByVal chainID As Nullable(Of Guid) _
    ) As JobLinkResults
    public JobLinkResults GetJobChain( 
       Nullable<Guid> chainID
    )
    public:
    JobLinkResults^ GetJobChain( 
       Nullable<Guid> chainID
    ) 

    Parameters

    chainID
    If specified, only jobs participating in the specified chain are returned.
    Remarks

    GetJobChain returns all jobs that are linked to this job, directly or indirectly, through JobConditions, JobTriggers, and JobControlActions.

    For example, if this job is called by a Response in JobA, and JobA has a condition on JobB, GetJobChain returns this job, JobA, and JobB.

    See Also