ISolutionService.AreProjectsLoadedAsync(Guid[], CancellationToken) Method

Definition

Checks if the projects are loaded.

public:
 System::Threading::Tasks::ValueTask<cli::array <bool> ^> AreProjectsLoadedAsync(cli::array <Guid> ^ projectIds, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.ValueTask<bool[]> AreProjectsLoadedAsync (Guid[] projectIds, System.Threading.CancellationToken cancellationToken);
abstract member AreProjectsLoadedAsync : Guid[] * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<bool[]>
Public Function AreProjectsLoadedAsync (projectIds As Guid(), cancellationToken As CancellationToken) As ValueTask(Of Boolean())

Parameters

projectIds
Guid[]

The GUID of the project.

cancellationToken
CancellationToken

A cancellation token.

Returns

If the project is currently loaded, it returns 'true'. Else, it returns 'false'.

Applies to