1
0

IAsyncGrouping.cs 421 B

12345678910111213141516171819
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. using System;
  3. using System.Collections.Generic;
  4. namespace System.Linq
  5. {
  6. public interface IAsyncGrouping<
  7. #if !NO_VARIANCE
  8. out
  9. #endif
  10. TKey,
  11. #if !NO_VARIANCE
  12. out
  13. #endif
  14. TElement> : IAsyncEnumerable<TElement>
  15. {
  16. TKey Key { get; }
  17. }
  18. }