-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSystem.Reactive.xml
6045 lines (6045 loc) · 403 KB
/
System.Reactive.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>System.Reactive</name>
</assembly>
<members>
<member name="T:System.Reactive.EventPatternSourceBase`2">
<summary>
Base class for classes that expose an observable sequence as a well-known event pattern (sender, event arguments).
Contains functionality to maintain a map of event handler delegates to observable sequence subscriptions. Subclasses
should only add an event with custom add and remove methods calling into the base class's operations.
</summary>
<typeparam name="TSender">Type of the sender.</typeparam>
<typeparam name="TEventArgs">Type of the event arguments.</typeparam>
</member>
<member name="M:System.Reactive.EventPatternSourceBase`2.#ctor(System.IObservable{System.Reactive.EventPattern{`0,`1}},System.Action{System.Action{`0,`1},System.Reactive.EventPattern{`0,`1}})">
<summary>
Creates a new event pattern source.
</summary>
<param name="source">Source sequence to expose as an event.</param>
<param name="invokeHandler">Delegate used to invoke the event for each element of the sequence.</param>
</member>
<member name="M:System.Reactive.EventPatternSourceBase`2.Add(System.Delegate,System.Action{`0,`1})">
<summary>
Adds the specified event handler, causing a subscription to the underlying source.
</summary>
<param name="handler">Event handler to add. The same delegate should be passed to the Remove operation in order to remove the event handler.</param>
<param name="invoke">Invocation delegate to raise the event in the derived class.</param>
</member>
<member name="M:System.Reactive.EventPatternSourceBase`2.Remove(System.Delegate)">
<summary>
Removes the specified event handler, causing a disposal of the corresponding subscription to the underlying source that was created during the Add operation.
</summary>
<param name="handler">Event handler to remove. This should be the same delegate as one that was passed to the Add operation.</param>
</member>
<member name="T:System.Reactive.Disposables.SingleAssignmentDisposable">
<summary>
A SingleAssignmentDisposable only allows a single assignment of its disposable object. If it has already been assigned, attempts to set the underlying object will throw an InvalidOperationException.
</summary>
</member>
<member name="M:System.Reactive.Disposables.SingleAssignmentDisposable.#ctor">
<summary>
Initializes a new instance of the <see cref="T:System.Reactive.Disposables.SingleAssignmentDisposable"/> class.
</summary>
</member>
<member name="M:System.Reactive.Disposables.SingleAssignmentDisposable.Dispose">
<summary>
Disposes the underlying disposable.
</summary>
</member>
<member name="P:System.Reactive.Disposables.SingleAssignmentDisposable.IsDisposed">
<summary>
Gets a value that indicates whether the object is disposed.
</summary>
</member>
<member name="P:System.Reactive.Disposables.SingleAssignmentDisposable.Disposable">
<summary>
Gets or sets the underlying disposable.
</summary>
<remarks>If the FutureDisposable has already been assigned then it will throw an InvalidOperationException.</remarks>
</member>
<member name="T:System.Reactive.Disposables.SerialDisposable">
<summary>
Represents a disposable whose underlying disposable can be swapped for another disposable which causes the previous underlying disposable to be disposed.
</summary>
</member>
<member name="M:System.Reactive.Disposables.SerialDisposable.#ctor">
<summary>
Initializes a new instance of the <see cref="T:System.Reactive.Disposables.SerialDisposable"/> class.
</summary>
</member>
<member name="M:System.Reactive.Disposables.SerialDisposable.Dispose">
<summary>
Disposes the underlying disposable as well as all future replacements.
</summary>
</member>
<member name="P:System.Reactive.Disposables.SerialDisposable.IsDisposed">
<summary>
Gets a value that indicates whether the object is disposed.
</summary>
</member>
<member name="P:System.Reactive.Disposables.SerialDisposable.Disposable">
<summary>
Gets or sets the underlying disposable.
</summary>
<remarks>If the ReplaceDisposable has already been disposed, assignment to this property causes immediate disposal of the given disposable object. Assigning this property disposes the previous disposable object.</remarks>
</member>
<member name="T:System.Reactive.EventPattern`1">
<summary>
Represents the Sender and EventArgs values of a .NET event.
</summary>
</member>
<member name="T:System.Reactive.EventPattern`2">
<summary>
Represents the Sender and EventArgs values of a .NET event.
</summary>
</member>
<member name="M:System.Reactive.EventPattern`2.#ctor(`0,`1)">
<summary>
Represents the Sender and EventArg values of a .NET event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A TEventArgs that contains the event data.</param>
</member>
<member name="M:System.Reactive.EventPattern`2.Equals(System.Reactive.EventPattern{`0,`1})">
<summary>
Indicates whether the current object is equal to another object of the same type.
</summary>
<param name="other">An object to compare with this object.</param>
<returns>true if the current object is equal to the other parameter; otherwise, false.</returns>
</member>
<member name="M:System.Reactive.EventPattern`2.Equals(System.Object)">
<summary>
Determines whether the specified System.Object is equal to the current EventPattern.
</summary>
<param name="obj">The System.Object to compare with the current EventPattern.</param>
<returns>true if the specified EventPattern is equal to the current System.Object; otherwise, false.</returns>
</member>
<member name="M:System.Reactive.EventPattern`2.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>A hash code for the current EventPattern.</returns>
</member>
<member name="M:System.Reactive.EventPattern`2.op_Equality(System.Reactive.EventPattern{`0,`1},System.Reactive.EventPattern{`0,`1})">
<summary>
Determines whether two specified EventPatterns have the same value.
</summary>
<param name="first">The first EventPattern to compare, or null.</param>
<param name="second">The second EventPattern to compare, or null.</param>
<returns>true if the value of first is the same as the value of second; otherwise, false.</returns>
</member>
<member name="M:System.Reactive.EventPattern`2.op_Inequality(System.Reactive.EventPattern{`0,`1},System.Reactive.EventPattern{`0,`1})">
<summary>
Determines whether two specified EventPatterns have different values.
</summary>
<param name="first">The first EventPattern to compare, or null.</param>
<param name="second">The second EventPattern to compare, or null.</param>
<returns>true if the value of first is different from the value of second; otherwise, false.</returns>
</member>
<member name="P:System.Reactive.EventPattern`2.Sender">
<summary>
Gets the sender value of the event.
</summary>
</member>
<member name="P:System.Reactive.EventPattern`2.EventArgs">
<summary>
Gets the event arguments value of the event.
</summary>
</member>
<member name="M:System.Reactive.EventPattern`1.#ctor(System.Object,`0)">
<summary>
Represents the Sender and EventArg values of a .NET event.
</summary>
<param name="sender">The source of the event.</param>
<param name="e">A TEventArgs that contains the event data.</param>
</member>
<member name="T:System.Reactive.IEventPatternSource`1">
<summary>
Represents a data stream signaling its elements by means of an event.
</summary>
<typeparam name="TEventArgs">Event arguments type.</typeparam>
</member>
<member name="E:System.Reactive.IEventPatternSource`1.OnNext">
<summary>
Event signaling the next element in the data stream.
</summary>
</member>
<member name="T:System.Reactive.IEventSource`1">
<summary>
Represents a data stream signaling its elements by means of an event.
</summary>
<typeparam name="T">Event arguments type.</typeparam>
</member>
<member name="E:System.Reactive.IEventSource`1.OnNext">
<summary>
Event signaling the next element in the data stream.
</summary>
</member>
<member name="T:System.Reactive.ExperimentalAttribute">
<summary>
Marks the program elements that are experimental. This class cannot be inherited.
</summary>
</member>
<member name="T:System.Reactive.IObserver`2">
<summary>
Supports push-style iteration over an observable sequence.
</summary>
</member>
<member name="M:System.Reactive.IObserver`2.OnNext(`0)">
<summary>
Notifies the observer of a new value in the sequence.
</summary>
<returns>Result returned upon observation of a new value.</returns>
</member>
<member name="M:System.Reactive.IObserver`2.OnError(System.Exception)">
<summary>
Notifies the observer that an exception has occurred.
</summary>
<returns>Result returned upon observation of an error.</returns>
</member>
<member name="M:System.Reactive.IObserver`2.OnCompleted">
<summary>
Notifies the observer of the end of the sequence.
</summary>
<returns>Result returned upon observation of the sequence completion.</returns>
</member>
<member name="T:System.Reactive.Linq.Observable">
<summary>
Provides a set of static methods for query operations over observable sequences.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``1(System.Func{System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``0})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``2(System.Func{``0,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``1})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``3(System.Func{``0,``1,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``2})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``4(System.Func{``0,``1,``2,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``3})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``5(System.Func{``0,``1,``2,``3,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``4})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``6(System.Func{``0,``1,``2,``3,``4,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``5})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``7(System.Func{``0,``1,``2,``3,``4,``5,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``6})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``8(System.Func{``0,``1,``2,``3,``4,``5,``6,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``7})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``9(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``8})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``10(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``9})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``11(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``10})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``12(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``11})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``13(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``12})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``14(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``13})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``15(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,System.AsyncCallback,System.Object,System.IAsyncResult},System.Func{System.IAsyncResult,``14})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Func{``0})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Func{``0},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Func{``0,``1})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Func{``0,``1},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Func{``0,``1,``2})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Func{``0,``1,``2},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Func{``0,``1,``2,``3})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Func{``0,``1,``2,``3},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``5(System.Func{``0,``1,``2,``3,``4})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``5(System.Func{``0,``1,``2,``3,``4},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``6(System.Func{``0,``1,``2,``3,``4,``5})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``6(System.Func{``0,``1,``2,``3,``4,``5},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``7(System.Func{``0,``1,``2,``3,``4,``5,``6})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``7(System.Func{``0,``1,``2,``3,``4,``5,``6},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``8(System.Func{``0,``1,``2,``3,``4,``5,``6,``7})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``8(System.Func{``0,``1,``2,``3,``4,``5,``6,``7},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``9(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``9(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``10(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``10(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``11(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``11(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``12(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``12(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``13(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``13(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``14(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``14(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``15(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``15(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``16(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``16(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``17(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,``16})">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``17(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,``16},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the function into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync(System.Action)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync(System.Action,System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Action{``0})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``1(System.Action{``0},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Action{``0,``1})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``2(System.Action{``0,``1},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Action{``0,``1,``2})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``3(System.Action{``0,``1,``2},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Action{``0,``1,``2,``3})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``4(System.Action{``0,``1,``2,``3},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``5(System.Action{``0,``1,``2,``3,``4})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``5(System.Action{``0,``1,``2,``3,``4},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``6(System.Action{``0,``1,``2,``3,``4,``5})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``6(System.Action{``0,``1,``2,``3,``4,``5},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``7(System.Action{``0,``1,``2,``3,``4,``5,``6})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``7(System.Action{``0,``1,``2,``3,``4,``5,``6},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.ToAsync``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15},System.Reactive.Concurrency.IScheduler)">
<summary>
Converts the action into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.Start``1(System.Func{``0})">
<summary>
Invokes the function asynchronously.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.Start``1(System.Func{``0},System.Reactive.Concurrency.IScheduler)">
<summary>
Invokes the function asynchronously.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.Start(System.Action)">
<summary>
Invokes the action asynchronously.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.Start(System.Action,System.Reactive.Concurrency.IScheduler)">
<summary>
Invokes the action asynchronously.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern(System.Func{System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``1(System.Func{``0,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``2(System.Func{``0,``1,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``3(System.Func{``0,``1,``2,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``4(System.Func{``0,``1,``2,``3,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``5(System.Func{``0,``1,``2,``3,``4,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``6(System.Func{``0,``1,``2,``3,``4,``5,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``7(System.Func{``0,``1,``2,``3,``4,``5,``6,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``8(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``9(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``10(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``11(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``12(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``13(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromAsyncPattern``14(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,System.AsyncCallback,System.Object,System.IAsyncResult},System.Action{System.IAsyncResult})">
<summary>
Converts a Begin/End invoke function pair into an asynchronous function.
</summary>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern(System.Action{System.EventHandler},System.Action{System.EventHandler})">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
</summary>
<param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
<param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern``2(System.Action{``0},System.Action{``0})">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
</summary>
<param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
<param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern``2(System.Func{System.EventHandler{``1},``0},System.Action{``0},System.Action{``0})">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
</summary>
<param name="conversion">A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.</param>
<param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
<param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern``1(System.Action{System.EventHandler{``0}},System.Action{System.EventHandler{``0}})">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
</summary>
<param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
<param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern``3(System.Action{``0},System.Action{``0})">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence.
</summary>
<param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
<param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern(System.Object,System.String)">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find an instance event.
</summary>
<param name="target">Object instance that exposes the event to convert.</param>
<param name="eventName">Name of the event to convert.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern``1(System.Object,System.String)">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find an instance event.
</summary>
<param name="target">Object instance that exposes the event to convert.</param>
<param name="eventName">Name of the event to convert.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern``2(System.Object,System.String)">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find an instance event.
</summary>
<param name="target">Object instance that exposes the event to convert.</param>
<param name="eventName">Name of the event to convert.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern(System.Type,System.String)">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find a static event.
</summary>
<param name="type">Type that exposes the static event to convert.</param>
<param name="eventName">Name of the event to convert.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern``1(System.Type,System.String)">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find a static event.
</summary>
<param name="type">Type that exposes the static event to convert.</param>
<param name="eventName">Name of the event to convert.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEventPattern``2(System.Type,System.String)">
<summary>
Converts a .NET event, conforming to the standard .NET event pattern, to an observable sequence, using reflection to find a static event.
</summary>
<param name="type">Type that exposes the static event to convert.</param>
<param name="eventName">Name of the event to convert.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEventPattern``1(System.IObservable{System.Reactive.EventPattern{``0}})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEvent``2(System.Func{System.Action{``1},``0},System.Action{``0},System.Action{``0})">
<summary>
Converts a .NET event to an observable sequence.
</summary>
<param name="conversion">A function used to convert the given event handler to a delegate compatible with the underlying .NET event. The resulting delegate is used in calls to the addHandler and removeHandler action parameters.</param>
<param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
<param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEvent``2(System.Action{``0},System.Action{``0})">
<summary>
Converts a .NET event to an observable sequence.
</summary>
<param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
<param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEvent``1(System.Action{System.Action{``0}},System.Action{System.Action{``0}})">
<summary>
Converts a .NET event to an observable sequence.
</summary>
<param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
<param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.FromEvent(System.Action{System.Action},System.Action{System.Action})">
<summary>
Converts a .NET event to an observable sequence.
</summary>
<param name="addHandler">Action that attaches the given event handler to the underlying .NET event.</param>
<param name="removeHandler">Action that detaches the given event handler from the underlying .NET event.</param>
<returns>The observable sequence that contains data representations of invocations of the underlying .NET event.</returns>
<seealso cref="M:System.Reactive.Linq.Observable.ToEvent(System.IObservable{System.Reactive.Unit})"/>
</member>
<member name="M:System.Reactive.Linq.Observable.Aggregate``2(System.IObservable{``0},``1,System.Func{``1,``0,``1})">
<summary>
Applies an accumulator function over an observable sequence. The specified seed value is used as the initial accumulator value.
</summary>
<param name="source">An observable sequence to aggregate over.</param>
<param name="seed">The initial accumulator value.</param>
<param name="accumulator">An accumulator function to be invoked on each element.</param>
<returns>An observable sequence containing a single element with the final accumulator value.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Aggregate``1(System.IObservable{``0},System.Func{``0,``0,``0})">
<summary>
Applies an accumulator function over an observable sequence.
</summary>
<param name="source">An observable sequence to aggregate over.</param>
<param name="accumulator">An accumulator function to be invoked on each element.</param>
<returns>An observable sequence containing a single element with the final accumulator value.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.IsEmpty``1(System.IObservable{``0})">
<summary>
Determines whether an observable sequence is empty.
</summary>
<param name="source">An observable sequence to check for emptiness.</param>
<returns>An observable sequence containing a single element determining whether the source sequence is empty.</returns>
</member>
<member name="M:System.Reactive.Linq.Observable.Any``1(System.IObservable{``0})">
<summary>
Determines whether an observable sequence contains any elements.
</summary>
<param name="source">An observable sequence to check for non-emptiness.</param>
<returns>An observable sequence containing a single element determining whether the source sequence contains any elements.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Any``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
<summary>
Determines whether any element of an observable sequence satisfies a condition.
</summary>
<param name="source">An observable sequence whose elements to apply the predicate to.</param>
<param name="predicate">A function to test each element for a condition.</param>
<returns>An observable sequence containing a single element determining whether any elements in the source sequence pass the test in the specified predicate.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.All``1(System.IObservable{``0},System.Func{``0,System.Boolean})">
<summary>
Determines whether all elements of an observable sequence satisfy a condition.
</summary>
<param name="source">An observable sequence whose elements to apply the predicate to.</param>
<param name="predicate">A function to test each element for a condition.</param>
<returns>An observable sequence containing a single element determining whether all elements in the source sequence pass the test in the specified predicate.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Contains``1(System.IObservable{``0},``0,System.Collections.Generic.IEqualityComparer{``0})">
<summary>
Determines whether an observable sequence contains a specified element by using a specified System.Collections.Generic.IEqualityComparer<T>.
</summary>
<param name="source">An observable sequence in which to locate a value.</param>
<param name="value">The value to locate in the sequence.</param>
<param name="comparer">An equality comparer to compare values.</param>
<returns>An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Contains``1(System.IObservable{``0},``0)">
<summary>
Determines whether an observable sequence contains a specified element by using the default equality comparer.
</summary>
<param name="source">An observable sequence in which to locate a value.</param>
<param name="value">The value to locate in the sequence.</param>
<returns>An observable sequence containing a single element determining whether the source sequence contains an element that has the specified value.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Count``1(System.IObservable{``0})">
<summary>
Returns a <see cref="T:System.Int32" /> that represents the total number of elements in an observable sequence.
</summary>
<param name="source">An observable sequence that contains elements to be counted.</param>
<returns>An observable sequence containing a single element with the number of elements in the input sequence.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.LongCount``1(System.IObservable{``0})">
<summary>
Returns a <see cref="T:System.Int64" /> that represents the total number of elements in an observable sequence.
</summary>
<param name="source">An observable sequence that contains elements to be counted.</param>
<returns>An observable sequence containing a single element with the number of elements in the input sequence.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Double})">
<summary>
Computes the sum of a sequence of <see cref="T:System.Double" /> values.
</summary>
<param name="source">A sequence of <see cref="T:System.Double" /> values to calculate the sum of.</param>
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Single})">
<summary>
Computes the sum of a sequence of <see cref="T:System.Single" /> values.
</summary>
<param name="source">A sequence of <see cref="T:System.Single" /> values to calculate the sum of.</param>
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Decimal})">
<summary>
Computes the sum of a sequence of <see cref="T:System.Decimal" /> values.
</summary>
<param name="source">A sequence of <see cref="T:System.Decimal" /> values to calculate the sum of.</param>
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Int32})">
<summary>
Computes the sum of a sequence of <see cref="T:System.Int32" /> values.
</summary>
<param name="source">A sequence of <see cref="T:System.Int32" /> values to calculate the sum of.</param>
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Int64})">
<summary>
Computes the sum of a sequence of <see cref="T:System.Int64" /> values.
</summary>
<param name="source">A sequence of <see cref="T:System.Int64" /> values to calculate the sum of.</param>
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Double}})">
<summary>
Computes the sum of a sequence of nullable <see cref="T:System.Double" /> values.
</summary>
<param name="source">A sequence of nullable <see cref="T:System.Double" /> values to calculate the sum of.</param>
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>
<remarks>The return value of this operator differs from the corresponding operator on IEnumerable in order to retain asynchronous behavior.</remarks>
</member>
<member name="M:System.Reactive.Linq.Observable.Sum(System.IObservable{System.Nullable{System.Single}})">
<summary>
Computes the sum of a sequence of nullable <see cref="T:System.Single" /> values.
</summary>
<param name="source">A sequence of nullable <see cref="T:System.Single" /> values to calculate the sum of.</param>
<returns>An observable sequence containing a single element with the sum of the values in the sequence.</returns>