This function gets the information about the job with a given job id and writes it to the given file.

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

Syntax

C#
public static void GetJobInfo(
	Guid jobId,
	bool compression,
	string fileName,
	bool overwrite
)
Visual Basic
Public Shared Sub GetJobInfo ( _
	jobId As Guid, _
	compression As Boolean, _
	fileName As String, _
	overwrite As Boolean _
)
Visual C++
public:
static void GetJobInfo(
	Guid jobId, 
	bool compression, 
	String^ fileName, 
	bool overwrite
)

Parameters

jobId
Type: Guid
Id of the job for which the job information is required.
compression
Type: Boolean
Whether compression needs to be used while communicating with the VC.
fileName
Type: String
Name of the file to which the job information needs to be written to.
overwrite
Type: Boolean
If the file to which the job information needs to be written already exists, passing true for this parameter will delete the file and passing false will throw an exception.

See Also