BlockingTaskEventArgs Class

Definition

The event arguments to be used with an event that passes in blocking task information. The parameters identify the task that is being waited on the UI thread (blocked task) and the task that is blocking the wait (blocking task).

public ref class BlockingTaskEventArgs : EventArgs
public class BlockingTaskEventArgs : EventArgs
type BlockingTaskEventArgs = class
    inherit EventArgs
Public Class BlockingTaskEventArgs
Inherits EventArgs
Inheritance
BlockingTaskEventArgs

Constructors

BlockingTaskEventArgs(IVsTask, IVsTask)

Instantiates a new instance of BlockingTaskEventArgs with the specified tasks.

Properties

BlockedTask

Gets the task that is being waited on the UI thread and that needs to be unblocked.

BlockingTask

Gets the task that is blocking a task being waited on the UI thread.

Applies to