Autodesk Vault ProfessionalVault API

AddJob Method

Autodesk.Connectivity.WebServicesJobService

Adds a new job to the queue.

Required Permissions

JobQueueAdd

Syntax

public Job AddJob(
   System.string type,
   System.string desc,
   JobParam[] paramArray,
   System.int priority
)
Public Function AddJob( _
   ByVal type As System.String, _
   ByVal desc As System.String, _
   ByVal paramArray() As JobParam, _
   ByVal priority As System.Integer _
) As Job

Parameters

NameDescription
typeThe type of job to add.
descA description of the job.
paramArrayAn array of parameters for the job.
priorityThe priority of the job. A lower number means a higher priority. 1 is the lowest possible number.

Return Value

The new job object.

See Also