VsTaskLibraryHelper.ContinueWith Method (IVsTask, VsTaskRunContext, IVsTaskBody)
Appends the provided action to this task to be run after the task is run to completion. The action is invoked on the context provided. Overrides ContinueWith.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
‘선언
<ExtensionAttribute> _
Public Shared Function ContinueWith ( _
task As IVsTask, _
context As VsTaskRunContext, _
body As IVsTaskBody _
) As IVsTask
public static IVsTask ContinueWith(
this IVsTask task,
VsTaskRunContext context,
IVsTaskBody body
)
Parameters
- task
Type: Microsoft.VisualStudio.Shell.Interop.IVsTask
[in] The task to which to append the action.
- context
Type: Microsoft.VisualStudio.Shell.VsTaskRunContext
[in] Where to run this task.
- body
Type: Microsoft.VisualStudio.Shell.Interop.IVsTaskBody
[in] Action to be executed.
Return Value
Type: Microsoft.VisualStudio.Shell.Interop.IVsTask
A new IVsTask instance that has the current task as its parent.
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.