/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Shared/ServerInfrastructure/RuntimeAsyncMethodGenerationAttribute.cs
10 строк
407 B
Brennan
Opt pooled async methods out of runtime async (#67190)
20 июн 2026, 07:43
Не верифицирован
20 июн 2026, 07:43
fb525db
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Runtime.CompilerServices; [AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = false)] internal sealed class RuntimeAsyncMethodGenerationAttribute(bool runtimeAsync) : Attribute { public bool RuntimeAsync => runtimeAsync; }