BlockingTaskEventArgs Class
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).
Inheritance Hierarchy
Object
EventArgs
Microsoft.VisualStudio.Shell.BlockingTaskEventArgs
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.Immutable.11.0 (in Microsoft.VisualStudio.Shell.Immutable.11.0.dll)
Syntax
'Declaration
Public Class BlockingTaskEventArgs _
Inherits EventArgs
public class BlockingTaskEventArgs : EventArgs
public ref class BlockingTaskEventArgs : public EventArgs
type BlockingTaskEventArgs =
class
inherit EventArgs
end
public class BlockingTaskEventArgs extends EventArgs
The BlockingTaskEventArgs type exposes the following members.
Constructors
Name | Description | |
---|---|---|
BlockingTaskEventArgs | Instantiates a new instance of BlockingTaskEventArgs with the specified tasks. |
Top
Properties
Name | Description | |
---|---|---|
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. |
Top
Methods
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.