/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/Core/NavigationBar/NavigationBarQueueItem.cs
16 строк
801 B
Cyrus Najmabadi
Change namespace
30 май 2024, 22:25
30 май 2024, 22:25
e63b0fd
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Threading; namespace Microsoft.CodeAnalysis.Editor.Implementation.NavigationBar; /// <param name="FrozenPartialSemantics">Indicates if we should compute with frozen partial semantics or /// not.</param> /// <param name="NonFrozenComputationToken">If <paramref name="FrozenPartialSemantics"/> is false, then this is a /// cancellation token that can cancel the expensive work being done if new frozen-partial work is /// requested.</param> internal readonly record struct NavigationBarQueueItem( bool FrozenPartialSemantics, CancellationToken? NonFrozenComputationToken);