This function deletes the job with a given job id from job manager list.

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

Syntax

C#
[ObsoleteAttribute("Use InternalCancelJob instead.")]
public virtual void InternalDeleteJob(
	Guid jobId
)
Visual Basic
<ObsoleteAttribute("Use InternalCancelJob instead.")> _
Public Overridable Sub InternalDeleteJob ( _
	jobId As Guid _
)
Visual C++
[ObsoleteAttribute(L"Use InternalCancelJob instead.")]
public:
virtual void InternalDeleteJob(
	Guid jobId
)

Parameters

jobId
Type: Guid
Job id of the job which needs to be deleted.

Exceptions

ExceptionCondition
VcClientExceptions..::..JobNotFoundExceptionJob not found.
ArgumentNullExceptionjobId is null.

See Also