Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IAsyncGrouping.cs « System.Interactive.Async « NET « Ix - github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61abc60539da0ec266d459389828966b2dfc3f89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;

namespace System.Linq
{
    public interface IAsyncGrouping<
#if DESKTOPCLR4 || SILVERLIGHT4
        out 
#endif
        TKey,
#if DESKTOPCLR4 || SILVERLIGHT4
        out 
#endif
        TElement> : IAsyncEnumerable<TElement>
    {
        TKey Key { get; }
    }
}