VsTaskLibraryHelper.Wait Method (IVsTask, Int32, VsTaskWaitOptions)
Waits for the task to complete (not including any continuations). Override for WaitEx to use correct enumeration types.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Wait ( _
task As IVsTask, _
millisecondsTimeout As Integer, _
options As VsTaskWaitOptions _
) As Boolean
public static bool Wait(
this IVsTask task,
int millisecondsTimeout,
VsTaskWaitOptions options
)
[ExtensionAttribute]
public:
static bool Wait(
IVsTask^ task,
int millisecondsTimeout,
VsTaskWaitOptions options
)
static member Wait :
task:IVsTask *
millisecondsTimeout:int *
options:VsTaskWaitOptions -> bool
public static function Wait(
task : IVsTask,
millisecondsTimeout : int,
options : VsTaskWaitOptions
) : boolean
Parameters
task
Type: Microsoft.VisualStudio.Shell.Interop.IVsTaskThe task that is to wait to complete.
millisecondsTimeout
Type: Int32The timeout (in milliseconds) or INFINITE.
options
Type: Microsoft.VisualStudio.Shell.VsTaskWaitOptionsThe options for the wait operation, as specified in VsTaskWaitOptions.
Return Value
Type: Boolean
The time to wait.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IVsTask. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.