This function gets the list of jobs and their status etc. for the given VC name.

Namespace: VcClient
Assembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)

Syntax

C#
public static List<JobInfo> GetJobsList(
	string vcName
)
Visual Basic
Public Shared Function GetJobsList ( _
	vcName As String _
) As List(Of JobInfo)
Visual C++
public:
static List<JobInfo^>^ GetJobsList(
	String^ vcName
)

Parameters

vcName
Type: String
Name of the VC for which the job list is requested

Return Value

List of JobInfo objects with some fields populated. To populate all fields for a particular job, use GetJobInfo(String, Boolean).

See Also