1
- [ assembly: System . CLSCompliantAttribute ( true ) ]
2
- [ assembly: System . Resources . NeutralResourcesLanguageAttribute ( "en-US" ) ]
3
- [ assembly: System . Runtime . InteropServices . ComVisibleAttribute ( false ) ]
4
- [ assembly: System . Runtime . Versioning . TargetFrameworkAttribute ( ".NETFramework,Version=v4.6" , FrameworkDisplayName = ".NET Framework 4.6" ) ]
1
+ [ assembly: System . CLSCompliant ( true ) ]
2
+ [ assembly: System . Resources . NeutralResourcesLanguage ( "en-US" ) ]
3
+ [ assembly: System . Runtime . InteropServices . ComVisible ( false ) ]
4
+ [ assembly: System . Runtime . Versioning . TargetFramework ( ".NETFramework,Version=v4.6" , FrameworkDisplayName = ".NET Framework 4.6" ) ]
5
5
namespace System . Reactive . Linq
6
6
{
7
- [ System . Diagnostics . CodeAnalysis . ExcludeFromCodeCoverageAttribute ( ) ]
8
- public class static QbservableAliases
7
+ [ System . Diagnostics . CodeAnalysis . ExcludeFromCodeCoverage ]
8
+ public static class QbservableAliases
9
9
{
10
10
public static System . Reactive . Linq . IQbservable < TSource > Filter < TSource > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , bool > > predicate ) { }
11
11
public static System . Reactive . Linq . IQbservable < TSource > Filter < TSource > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , bool > > predicate ) { }
12
- public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . IObservable < TCollection > > > collectionSelector , System . Linq . Expressions . Expression < System . Func < TSource , TCollection , TResult > > resultSelector ) { }
13
- public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . IObservable < TCollection > > > collectionSelector , System . Linq . Expressions . Expression < System . Func < TSource , int , TCollection , int , TResult > > resultSelector ) { }
14
- public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . Collections . Generic . IEnumerable < TCollection > > > collectionSelector , System . Linq . Expressions . Expression < System . Func < TSource , TCollection , TResult > > resultSelector ) { }
15
- public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . Collections . Generic . IEnumerable < TCollection > > > collectionSelector , System . Linq . Expressions . Expression < System . Func < TSource , int , TCollection , int , TResult > > resultSelector ) { }
16
12
public static System . Reactive . Linq . IQbservable < TOther > FlatMap < TSource , TOther > ( this System . Reactive . Linq . IQbservable < TSource > source , System . IObservable < TOther > other ) { }
17
- public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . IObservable < TResult > > > onNext , System . Linq . Expressions . Expression < System . Func < System . Exception , System . IObservable < TResult > > > onError , System . Linq . Expressions . Expression < System . Func < System . IObservable < TResult > > > onCompleted ) { }
18
- public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . IObservable < TResult > > > onNext , System . Linq . Expressions . Expression < System . Func < System . Exception , System . IObservable < TResult > > > onError , System . Linq . Expressions . Expression < System . Func < System . IObservable < TResult > > > onCompleted ) { }
13
+ public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . Collections . Generic . IEnumerable < TResult > > > selector ) { }
19
14
public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . IObservable < TResult > > > selector ) { }
20
- public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . IObservable < TResult > > > selector ) { }
21
15
public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . Threading . Tasks . Task < TResult > > > selector ) { }
16
+ public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . Collections . Generic . IEnumerable < TResult > > > selector ) { }
17
+ public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . IObservable < TResult > > > selector ) { }
22
18
public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . Threading . Tasks . Task < TResult > > > selector ) { }
23
19
public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . Threading . CancellationToken , System . Threading . Tasks . Task < TResult > > > selector ) { }
24
20
public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . Threading . CancellationToken , System . Threading . Tasks . Task < TResult > > > selector ) { }
25
- public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . Collections . Generic . IEnumerable < TResult > > > selector ) { }
26
- public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . Collections . Generic . IEnumerable < TResult > > > selector ) { }
21
+ public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . IObservable < TResult > > > onNext , System . Linq . Expressions . Expression < System . Func < System . Exception , System . IObservable < TResult > > > onError , System . Linq . Expressions . Expression < System . Func < System . IObservable < TResult > > > onCompleted ) { }
22
+ public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . IObservable < TResult > > > onNext , System . Linq . Expressions . Expression < System . Func < System . Exception , System . IObservable < TResult > > > onError , System . Linq . Expressions . Expression < System . Func < System . IObservable < TResult > > > onCompleted ) { }
23
+ public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . Collections . Generic . IEnumerable < TCollection > > > collectionSelector , System . Linq . Expressions . Expression < System . Func < TSource , TCollection , TResult > > resultSelector ) { }
24
+ public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . IObservable < TCollection > > > collectionSelector , System . Linq . Expressions . Expression < System . Func < TSource , TCollection , TResult > > resultSelector ) { }
27
25
public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TTaskResult , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . Threading . Tasks . Task < TTaskResult > > > taskSelector , System . Linq . Expressions . Expression < System . Func < TSource , TTaskResult , TResult > > resultSelector ) { }
26
+ public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . Collections . Generic . IEnumerable < TCollection > > > collectionSelector , System . Linq . Expressions . Expression < System . Func < TSource , int , TCollection , int , TResult > > resultSelector ) { }
27
+ public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . IObservable < TCollection > > > collectionSelector , System . Linq . Expressions . Expression < System . Func < TSource , int , TCollection , int , TResult > > resultSelector ) { }
28
28
public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TTaskResult , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . Threading . Tasks . Task < TTaskResult > > > taskSelector , System . Linq . Expressions . Expression < System . Func < TSource , int , TTaskResult , TResult > > resultSelector ) { }
29
29
public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TTaskResult , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , System . Threading . CancellationToken , System . Threading . Tasks . Task < TTaskResult > > > taskSelector , System . Linq . Expressions . Expression < System . Func < TSource , TTaskResult , TResult > > resultSelector ) { }
30
30
public static System . Reactive . Linq . IQbservable < TResult > FlatMap < TSource , TTaskResult , TResult > ( this System . Reactive . Linq . IQbservable < TSource > source , System . Linq . Expressions . Expression < System . Func < TSource , int , System . Threading . CancellationToken , System . Threading . Tasks . Task < TTaskResult > > > taskSelector , System . Linq . Expressions . Expression < System . Func < TSource , int , TTaskResult , TResult > > resultSelector ) { }
@@ -34,29 +34,29 @@ public static System.Reactive.Linq.IQbservable<TResult> Map<TSource, TResult>(th
34
34
}
35
35
namespace System . Reactive . Observable . Aliases
36
36
{
37
- public class static QueryLanguage
37
+ public static class QueryLanguage
38
38
{
39
39
public static System . IObservable < TSource > Filter < TSource > ( this System . IObservable < TSource > source , System . Func < TSource , bool > predicate ) { }
40
40
public static System . IObservable < TSource > Filter < TSource > ( this System . IObservable < TSource > source , System . Func < TSource , int , bool > predicate ) { }
41
- public static System . IObservable < TOther > FlatMap < TSource , TOther > ( this System . IObservable < TSource > source , System . IObservable < TOther > other ) { }
41
+ public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . Collections . Generic . IEnumerable < TResult > > selector ) { }
42
42
public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . IObservable < TResult > > selector ) { }
43
- public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . IObservable < TResult > > selector ) { }
44
43
public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . Threading . Tasks . Task < TResult > > selector ) { }
44
+ public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . Collections . Generic . IEnumerable < TResult > > selector ) { }
45
+ public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . IObservable < TResult > > selector ) { }
45
46
public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . Threading . Tasks . Task < TResult > > selector ) { }
46
47
public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . Threading . CancellationToken , System . Threading . Tasks . Task < TResult > > selector ) { }
47
48
public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . Threading . CancellationToken , System . Threading . Tasks . Task < TResult > > selector ) { }
49
+ public static System . IObservable < TOther > FlatMap < TSource , TOther > ( this System . IObservable < TSource > source , System . IObservable < TOther > other ) { }
50
+ public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . IObservable < TResult > > onNext , System . Func < System . Exception , System . IObservable < TResult > > onError , System . Func < System . IObservable < TResult > > onCompleted ) { }
51
+ public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . IObservable < TResult > > onNext , System . Func < System . Exception , System . IObservable < TResult > > onError , System . Func < System . IObservable < TResult > > onCompleted ) { }
52
+ public static System . IObservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . Collections . Generic . IEnumerable < TCollection > > collectionSelector , System . Func < TSource , TCollection , TResult > resultSelector ) { }
48
53
public static System . IObservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . IObservable < TCollection > > collectionSelector , System . Func < TSource , TCollection , TResult > resultSelector ) { }
49
- public static System . IObservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . IObservable < TCollection > > collectionSelector , System . Func < TSource , int , TCollection , int , TResult > resultSelector ) { }
50
54
public static System . IObservable < TResult > FlatMap < TSource , TTaskResult , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . Threading . Tasks . Task < TTaskResult > > taskSelector , System . Func < TSource , TTaskResult , TResult > resultSelector ) { }
55
+ public static System . IObservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . Collections . Generic . IEnumerable < TCollection > > collectionSelector , System . Func < TSource , int , TCollection , int , TResult > resultSelector ) { }
56
+ public static System . IObservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . IObservable < TCollection > > collectionSelector , System . Func < TSource , int , TCollection , int , TResult > resultSelector ) { }
51
57
public static System . IObservable < TResult > FlatMap < TSource , TTaskResult , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . Threading . Tasks . Task < TTaskResult > > taskSelector , System . Func < TSource , int , TTaskResult , TResult > resultSelector ) { }
52
58
public static System . IObservable < TResult > FlatMap < TSource , TTaskResult , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . Threading . CancellationToken , System . Threading . Tasks . Task < TTaskResult > > taskSelector , System . Func < TSource , TTaskResult , TResult > resultSelector ) { }
53
59
public static System . IObservable < TResult > FlatMap < TSource , TTaskResult , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . Threading . CancellationToken , System . Threading . Tasks . Task < TTaskResult > > taskSelector , System . Func < TSource , int , TTaskResult , TResult > resultSelector ) { }
54
- public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . IObservable < TResult > > onNext , System . Func < System . Exception , System . IObservable < TResult > > onError , System . Func < System . IObservable < TResult > > onCompleted ) { }
55
- public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . IObservable < TResult > > onNext , System . Func < System . Exception , System . IObservable < TResult > > onError , System . Func < System . IObservable < TResult > > onCompleted ) { }
56
- public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . Collections . Generic . IEnumerable < TResult > > selector ) { }
57
- public static System . IObservable < TResult > FlatMap < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . Collections . Generic . IEnumerable < TResult > > selector ) { }
58
- public static System . IObservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , System . Collections . Generic . IEnumerable < TCollection > > collectionSelector , System . Func < TSource , TCollection , TResult > resultSelector ) { }
59
- public static System . IObservable < TResult > FlatMap < TSource , TCollection , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , System . Collections . Generic . IEnumerable < TCollection > > collectionSelector , System . Func < TSource , int , TCollection , int , TResult > resultSelector ) { }
60
60
public static System . IObservable < TResult > Map < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , TResult > selector ) { }
61
61
public static System . IObservable < TResult > Map < TSource , TResult > ( this System . IObservable < TSource > source , System . Func < TSource , int , TResult > selector ) { }
62
62
}
0 commit comments