/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Dependencies/Threading/TestHooks/IAsyncToken.cs
14 строк
366 B
Tomáš Matoušek
Add IsNull property to IAsyncToken (#78718)
28 май 2025, 01:29
Не верифицирован
28 май 2025, 01:29
4381944
Код
Авторство
О чём код?
// 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. #nullable enable using System; namespace Microsoft.CodeAnalysis.Shared.TestHooks; internal interface IAsyncToken : IDisposable { bool IsNull { get; } }