Task.CurrentId Property

Definition

Returns the ID of the currently executing Task.

public:
 static property Nullable<int> CurrentId { Nullable<int> get(); };
public static int? CurrentId { get; }
static member CurrentId : Nullable<int>
Public Shared ReadOnly Property CurrentId As Nullable(Of Integer)

Property Value

An integer that was assigned by the system to the currently-executing task.

Remarks

CurrentId is a static (Shared in Visual Basic) property that is used to get the identifier of the currently executing task from the code that the task is executing. It differs from the Id property, which returns the identifier of a particular Task instance. If you attempt to retrieve the CurrentId value from outside the code that a task is executing, the property returns null.

Note that although collisions are very rare, task identifiers are not guaranteed to be unique.

Applies to

See also