System.Collections.Async.AsyncEnumerationCanceledException
This exception is thrown when you call Break
or when the enumerator is disposed before reaching the end of enumeration.
namespace System.Collections.Async
{
public sealed class AsyncEnumerationCanceledException : OperationCanceledException
{
public AsyncEnumerationCanceledException();
}
}