UpdateExtensions.DebugLaunchAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
DebugLaunchAsync(IAsyncQueryable<ISolutionSnapshot>, CancellationToken) |
Debug the solution in the project. |
DebugLaunchAsync(IProjectSnapshot, CancellationToken) |
Debugs the project in the solution. |
DebugLaunchAsync(IAsyncQueryable<ISolutionSnapshot>, CancellationToken)
Debug the solution in the project.
public static System.Threading.Tasks.Task<Microsoft.VisualStudio.ProjectSystem.Query.IQueryResults<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot>> DebugLaunchAsync (this Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot> solutions, System.Threading.CancellationToken cancellationToken);
static member DebugLaunchAsync : Microsoft.VisualStudio.ProjectSystem.Query.IAsyncQueryable<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.VisualStudio.ProjectSystem.Query.IQueryResults<Microsoft.VisualStudio.ProjectSystem.Query.ISolutionSnapshot>>
<Extension()>
Public Function DebugLaunchAsync (solutions As IAsyncQueryable(Of ISolutionSnapshot), cancellationToken As CancellationToken) As Task(Of IQueryResults(Of ISolutionSnapshot))
Parameters
- solutions
- IAsyncQueryable<ISolutionSnapshot>
A collection of solutions.
- cancellationToken
- CancellationToken
A cancellation token to abort the operation.
Returns
A task which is completed when the operation is completed.
Applies to
DebugLaunchAsync(IProjectSnapshot, CancellationToken)
Debugs the project in the solution.
public static System.Threading.Tasks.Task<Microsoft.VisualStudio.ProjectSystem.Query.IQueryResults<Microsoft.VisualStudio.ProjectSystem.Query.IProjectSnapshot>> DebugLaunchAsync (this Microsoft.VisualStudio.ProjectSystem.Query.IProjectSnapshot project, System.Threading.CancellationToken cancellationToken);
static member DebugLaunchAsync : Microsoft.VisualStudio.ProjectSystem.Query.IProjectSnapshot * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.VisualStudio.ProjectSystem.Query.IQueryResults<Microsoft.VisualStudio.ProjectSystem.Query.IProjectSnapshot>>
<Extension()>
Public Function DebugLaunchAsync (project As IProjectSnapshot, cancellationToken As CancellationToken) As Task(Of IQueryResults(Of IProjectSnapshot))
Parameters
- project
- IProjectSnapshot
The project to debug.
- cancellationToken
- CancellationToken
A cancellation token to abort the operation.
Returns
A task which is completed when the operation is completed.