ISolutionService.AreProjectsLoadedAsync(Guid[], CancellationToken) 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.
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'.