Specifies a job guid for a new job. If JobService gets several submit requests for same ID, it will submit first job only. For following submit requests it will do nothing or return an error. This feature is useful for job submission tracking and to avoid duplicate submissions because of connectivity issues. If JobId is not specified, scope will generate one automatically. Default is null.

Namespace: ScopeClient
Assembly: Scope (in Scope.exe) Version: 10.2.0.0 (10.2.2.0)

Syntax

C#
public Nullable<Guid> JobId { get; set; }
Visual Basic
Public Property JobId As Nullable(Of Guid)
	Get
	Set
Visual C++
public:
property Nullable<Guid> JobId {
	Nullable<Guid> get ();
	void set (Nullable<Guid> value);
}

See Also