adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataContext Class / GetJobs Method / GetJobs(String) Method
The fully-qualified name of the job to fetch (see Remarks).


In This Topic
    GetJobs(String) Method
    In This Topic
    Gets the Jobs that match the specified name.
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Public Overloads Function GetJobs( _
       ByVal jobName As String _
    ) As JobCollection
    [NotNull()]
    public JobCollection GetJobs( 
       string jobName
    )
    [NotNull()]
    public:
    JobCollection^ GetJobs( 
       String^ jobName
    ) 

    Parameters

    jobName
    The fully-qualified name of the job to fetch (see Remarks).

    Return Value

    The Job, or a null reference (Nothing in Visual Basic) if no matching object is found.
    Remarks
    If the job is contained in a group, the full path to the job must be included in the form "Group Level 1\Group Level 2\Job Name". For a job in the root group, specify "\Job Name". To search all groups, specify only the name (e.g., "Job Name").
    See Also