EnumeratorCancellationAttribute
Allows users of async-enumerable methods to mark the parameter that should receive the cancellation token value from GetAsyncEnumerator.
namespace System.Runtime.CompilerServices
{
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
public sealed class EnumeratorCancellationAttribute : Attribute
{
}
}