This function deletes the job with a given job ID.

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

Syntax

C#
[ObsoleteAttribute("Use CancelJob instead. Notice that Guid should be used in the new function instead of a string")]
public static void DeleteJob(
	string jobId
)
Visual Basic
<ObsoleteAttribute("Use CancelJob instead. Notice that Guid should be used in the new function instead of a string")> _
Public Shared Sub DeleteJob ( _
	jobId As String _
)
Visual C++
[ObsoleteAttribute(L"Use CancelJob instead. Notice that Guid should be used in the new function instead of a string")]
public:
static void DeleteJob(
	String^ jobId
)

Parameters

jobId
Type: String
Job ID of the job which needs to be deleted.

See Also