| File: RuntimeAsyncMethodGenerationAttribute.cs | Web Access |
| Project: src\src\SignalR\clients\csharp\Client\test\FunctionalTests\Microsoft.AspNetCore.SignalR.Client.FunctionalTests.csproj (Microsoft.AspNetCore.SignalR.Client.FunctionalTests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // Polyfill: RuntimeAsyncMethodGenerationAttribute is not yet public API namespace System.Runtime.CompilerServices; [AttributeUsage(AttributeTargets.Method)] internal sealed class RuntimeAsyncMethodGenerationAttribute(bool runtimeAsync) : Attribute { public bool RuntimeAsync { get; } = runtimeAsync; } |