adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataContext Class / GetJobQueue Method
The name of the Queue to fetch. Specify a null reference (Nothing in Visual Basic) or an empty string to get the default queue.


In This Topic
    GetJobQueue Method
    In This Topic
    Gets the Job Queue with the specified name.
    Syntax
    'Declaration
     
    
    <CanBeNullAttribute()>
    Public Function GetJobQueue( _
       ByVal queueName As String _
    ) As JobQueue
    [CanBeNull()]
    public JobQueue GetJobQueue( 
       string queueName
    )
    [CanBeNull()]
    public:
    JobQueue^ GetJobQueue( 
       String^ queueName
    ) 

    Parameters

    queueName
    The name of the Queue to fetch. Specify a null reference (Nothing in Visual Basic) or an empty string to get the default queue.

    Return Value

    The Job Queue, or a null reference (Nothing in Visual Basic) if no matching object is found.
    See Also